Skip to content
This repository has been archived by the owner on Sep 2, 2024. It is now read-only.

Commit

Permalink
More debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
kretep committed Jun 7, 2024
1 parent ec098c4 commit 04126f1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,12 @@ jobs:
with:
name: build-artifacts
path: dist/

job2:
runs-on: ubuntu-latest
needs: build-and-test
steps:
- env:
VERSION: ${{needs.build-and-test.outputs.VERSION}}
run: echo "$VERSION"

4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
- name: Create GitHub Release
env:
GITHUB_TOKEN: ${{ github.token }}
VERSION: ${{ needs.build-and-test.outputs.version }}
VERSION: ${{ needs.build-and-test.outputs.VERSION }}
run: >-
gh release create
"v${VERSION}"
Expand All @@ -86,7 +86,7 @@ jobs:
- name: Upload artifact signatures to GitHub Release
env:
GITHUB_TOKEN: ${{ github.token }}
VERSION: ${{ needs.build-and-test.outputs.version }}
VERSION: ${{ needs.build-and-test.outputs.VERSION }}
# Upload to GitHub Release using the `gh` CLI.
# `dist/` contains the built packages, and the
# sigstore-produced signatures and certificates.
Expand Down

0 comments on commit 04126f1

Please sign in to comment.