We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b93a31 commit 6706b01Copy full SHA for 6706b01
.github/workflows/cd.yml
@@ -0,0 +1,19 @@
1
+name: CD
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ paths:
7
+ - 'VERSION'
8
9
+jobs:
10
+ release:
11
+ uses: jeffersonlab/container-workflows/.github/workflows/gh-release.yml@main
12
13
+ docker_publish:
14
+ needs:
15
+ - release
16
+ uses: jeffersonlab/container-workflows/.github/workflows/docker-publish.yml@main
17
+ with:
18
+ semvertag: ${{ needs.release.outputs.semvertag }}
19
+ secrets: inherit
VERSION
@@ -0,0 +1 @@
+1.0.0
0 commit comments