Skip to content

Commit

Permalink
Upload release flow 4 (#6)
Browse files Browse the repository at this point in the history
* Log info

* Update conditionals

* Create silent-crabs-roll.md
  • Loading branch information
Dave Kozma authored Feb 28, 2024
1 parent 52a20c9 commit f0bc3c7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/silent-crabs-roll.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"c2pa-node": patch
---

Upload release flow 4
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:

release-binaries:
needs: release
if: ${{ needs.release.outputs.published == true }}
if: needs.release.outputs.published == 'true'
name: Build binaries for ${{matrix.target}}
runs-on: ${{matrix.runner}}
env:
Expand Down Expand Up @@ -137,14 +137,14 @@ jobs:
- name: Upload artifact (development only)
id: upload-artifact
uses: actions/upload-artifact@v4
if: ${{ needs.release.outputs.published == false }}
if: needs.release.outputs.published != 'true'
with:
name: ${{ steps.package-artifact.outputs.archive }}
path: generated/${{ steps.package-artifact.outputs.archive }}
retention-days: 3

- name: Upload release asset
if: ${{ needs.release.outputs.published }}
if: needs.release.outputs.published == 'true'
shell: bash
env:
OWNER: dkozma
Expand Down

0 comments on commit f0bc3c7

Please # to comment.