Skip to content

Commit

Permalink
t
Browse files Browse the repository at this point in the history
  • Loading branch information
abose authored Feb 14, 2024
1 parent d33a90e commit 44b6210
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/cr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@ jobs:
permissions:
contents: write
runs-on: ubuntu-latest
outputs:
release_id: ${{ steps.create-release.outputs.result.id }}
upload_url: ${{ steps.create-release.outputs.result.upload_url }}

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -39,7 +36,8 @@ jobs:
prerelease: true
})
console.log(data);
return data
core.setOutput('release_id', data.id);
core.setOutput('upload_url', data.upload_url);
build-linux-bins:
needs: [ create-release ]
Expand All @@ -55,7 +53,7 @@ jobs:
steps:
- name: Echo create-release outputs
run: |
echo "Release ID: ${{ needs.create-release.outputs }}"
echo "Release ID: ${{ needs.create-release.outputs.release_id }}"
echo "Upload URL: ${{ needs.create-release.outputs.upload_url }}"
- uses: actions/checkout@v4
- name: get Git Tag
Expand Down

0 comments on commit 44b6210

Please sign in to comment.