Use a better switch mechanism for build type

pull/245/head
dgtlmoon 2021-10-05 18:48:54 +02:00
rodzic 2dc43bdfd3
commit 7f7fc737b3
1 zmienionych plików z 3 dodań i 2 usunięć

Wyświetl plik

@ -31,6 +31,7 @@ jobs:
echo ${{ github.sha }} > changedetectionio/source.txt
echo ${{ github.ref }} > changedetectionio/tag.txt
echo Event name: ${{ github.event_name }}
echo Ref ${{ github.ref }}
set
- name: Set up QEMU
@ -62,7 +63,7 @@ jobs:
- name: Build and push :latest
id: docker_build
if: ${{ github.event_name != 'release'}}
if: ${{ github.ref == 'master'}}
uses: docker/build-push-action@v2
with:
context: ./
@ -77,7 +78,7 @@ jobs:
- name: Build and push :tag
id: docker_build_tag_release
if: ${{ github.event_name == 'release'}}
if: startsWith(github.ref, 'refs/tags/0.')
uses: docker/build-push-action@v2
with:
context: ./