2019-12-02 08:44:54 +01:00
|
|
|
name: docker
|
|
|
|
|
2020-03-20 10:18:54 +01:00
|
|
|
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
|