We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d97ad2a commit fc72ea3Copy full SHA for fc72ea3
1 file changed
.github/workflows/build.yml
@@ -5,6 +5,10 @@ on:
5
branches: [main]
6
workflow_dispatch: {}
7
8
+concurrency:
9
+ group: ${{ github.workflow }}-${{ github.ref }}
10
+ cancel-in-progress: true
11
+
12
jobs:
13
version:
14
runs-on: ubuntu-latest
@@ -30,10 +34,12 @@ jobs:
30
34
bump-patch-on-unknown: 'true'
31
35
32
36
build:
33
- uses: netwarlan/action-container-build/.github/workflows/build-publish.yaml@main
37
+ needs: [version]
38
+ uses: netwarlan/action-container-build/.github/workflows/build-publish.yaml@v1
39
secrets: inherit
40
with:
41
image-name: ${{ github.event.repository.name }}
42
+ version: ${{ needs.version.outputs.new-version }}
43
44
release:
45
needs: [version, build]
0 commit comments