We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e24a4b commit 0cb1a3dCopy full SHA for 0cb1a3d
.github/workflows/docker.yml
@@ -2,8 +2,9 @@ name: Build and push blaiseio/acelink
2
3
on:
4
push:
5
- tags: ['[0-9].[0-9]+.[0-9]+']
6
branches: [master]
+ release:
7
+ types: [published]
8
9
jobs:
10
docker:
@@ -36,9 +37,9 @@ jobs:
36
37
-
38
name: Build and push
39
uses: docker/build-push-action@v2
- if: ${{ github.ref != 'refs/heads/master' }}
40
+ if: ${{ github.event.release.tag_name }}
41
with:
42
context: .
43
platforms: linux/amd64,linux/arm64
44
push: true
- tags: blaiseio/acelink:${{ GITHUB_REF##*/ }}
45
+ tags: blaiseio/acelink:${{ github.event.release.tag_name }}
0 commit comments