Skip to content

Commit

Permalink
Log info
Browse files Browse the repository at this point in the history
  • Loading branch information
Dave Kozma committed Feb 28, 2024
1 parent 0a0c8d1 commit 7088bd3
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 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 }}
if: ${{ needs.release.outputs.published == true }}
name: Build binaries for ${{matrix.target}}
runs-on: ${{matrix.runner}}
env:
Expand All @@ -66,6 +66,10 @@ jobs:
# runner: windows-latest

steps:
- name: Show published packages
run: |
echo '${{ needs.release.outputs.publishedPackages }}'
- name: Checkout
uses: actions/checkout@v4

Expand Down Expand Up @@ -153,5 +157,5 @@ jobs:
-H "Authorization: Bearer ${{ env.GITHUB_TOKEN }}" \
-H "X-GitHub-Api-Version: 2022-11-28" \
-H "Content-Type: application/zip" \
"https://uploads.github.com/repos/${{ env.OWNER }}/${{ env.REPO}}/releases/${{ env.PUBLISHED_VERSION }}/assets?name=${{ steps.package-artifact.outputs.archive }}" \
"https://uploads.github.com/repos/${{ env.OWNER }}/${{ env.REPO }}/releases/${{ env.PUBLISHED_VERSION }}/assets?name=${{ steps.package-artifact.outputs.archive }}" \
--data-binary "@generated/${{ steps.package-artifact.outputs.archive }}"

0 comments on commit 7088bd3

Please # to comment.