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 2b76094 commit f59eea5Copy full SHA for f59eea5
.github/workflows/package.yaml
@@ -1,11 +1,12 @@
1
name: package
2
3
-on:
4
- push:
5
- branches:
6
- - main
7
- tags:
8
- - '[0-9]+.[0-9]+.[0-9]+'
+on: [push]
+# on:
+# push:
+# branches:
+# - main
+# tags:
9
+# - '[0-9]+.[0-9]+.[0-9]+'
10
11
jobs:
12
package:
@@ -34,6 +35,9 @@ jobs:
34
35
platforms: linux/amd64,linux/arm64
36
provenance: false
37
push: true
- tags: ghcr.io/${{ github.repository }}/nginx:${{ env.TAG }}
38
+ # tags: ghcr.io/${{ github.repository }}/nginx:${{ env.TAG }}
39
+ tags: |
40
+ ghcr.io/${{ github.repository }}/nginx:latest
41
+ ghcr.io/${{ github.repository }}/nginx:0.9.0
42
env:
43
TAG: ${{ github.ref_name == 'main' && 'latest' || github.ref_name }}
0 commit comments