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 64504a0 commit ed219baCopy full SHA for ed219ba
.github/workflows/release.yml
@@ -12,6 +12,7 @@ jobs:
12
name: Release
13
timeout-minutes: 60
14
strategy:
15
+ fail-fast: false
16
matrix:
17
platform:
18
- runner: ubuntu-22.04
@@ -40,7 +41,13 @@ jobs:
40
41
run: |
42
make package type=deb app=api7ee-runtime runtime_version=${version} image_base=debian image_tag=bullseye-slim arch=${{ matrix.platform.build_arch }}
43
44
+ - uses: mukunku/[email protected]
45
+ id: check-tag
46
+ with:
47
+ tag: api7ee-runtime/${{ env.version }}
48
+
49
- name: Create Release
50
+ if: steps.check-tag.outputs.exists == 'false'
51
uses: actions/create-release@v1
52
env:
53
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments