Skip to content
This repository was archived by the owner on Aug 4, 2021. It is now read-only.

Commit 67cf175

Browse files
committed
fix publish in devel
1 parent 835eea7 commit 67cf175

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/publish.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
id: vars
1919
run: echo ::set-output name=tag::$(echo ${GITHUB_REF:10})
2020
- name: Build the tagged Docker image
21-
if: ${{ steps.vars.outputs.tag != '/master' }}
21+
if: ${{ steps.vars.outputs.tag != '/master' && steps.vars.outputs.tag != '/devel' }}
2222
run: docker build . --file Dockerfile --tag cscfi/swift-upload-runner:${{steps.vars.outputs.tag}}
2323
- name: Push the tagged Docker image
24-
if: ${{ steps.vars.outputs.tag != '/master' }}
24+
if: ${{ steps.vars.outputs.tag != '/master' && steps.vars.outputs.tag != '/devel' }}
2525
run: docker push cscfi/swift-upload-runner:${{steps.vars.outputs.tag}}
2626
- name: Build the latest Docker image
2727
if: ${{ steps.vars.outputs.tag == '/master' }}

0 commit comments

Comments
 (0)