28 lines
513 B
YAML
Raw Normal View History

2019-12-02 08:44:54 +01:00
name: docker
on:
push:
2021-01-05 13:28:35 +01:00
branches-ignore:
- 'dependabot/*'
tags:
- '*'
2019-12-02 08:44:54 +01:00
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
2020-05-26 08:45:13 +02:00
- name: integration-test
run: ./integration-test.sh
2019-12-02 08:44:54 +01:00
- name: docker publish
uses: elgohr/Publish-Docker-Github-Action@master
with:
name: beerchat/beerchat
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
tag_names: true
cache: true