Skip to content

Commit

Permalink
Upload nur wenn output Inhalt gegeben ist
Browse files Browse the repository at this point in the history
  • Loading branch information
kraeml committed May 27, 2024
1 parent 7e4337a commit 6e90bd7
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,7 @@ jobs:

- name: Create Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
if: ${{ ! steps.get_ubuntu_arm64_info.outputs.image }}
if: startsWith(github.ref, 'refs/tags/') && ${{ ! steps.get_ubuntu_arm64_info.outputs.image }}
id: create_release
with:
draft: false
Expand All @@ -164,8 +163,7 @@ jobs:

- name: Create Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
if: ${{ steps.get_ubuntu_arm64_info.outputs.image }}
if: startsWith(github.ref, 'refs/tags/') && ${{ steps.get_ubuntu_arm64_info.outputs.image }}
id: create_release
with:
draft: false
Expand Down

0 comments on commit 6e90bd7

Please sign in to comment.