Skip to content

Commit

Permalink
ci: Use GITHUB_OUTPUT envvar instead of set-output command (#19)
Browse files Browse the repository at this point in the history
* ci: Use GITHUB_OUTPUT envvar instead of set-output command

* Quote envvar to match documentation
  • Loading branch information
arunsathiya committed Jun 12, 2024
1 parent bcbacaa commit 6902cb3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ jobs:
shell: bash
run: |
source create-release.env/create-release.env
echo "::set-output name=upload_url::$UPLOAD_URL"
echo "upload_url=$UPLOAD_URL" >> "$GITHUB_OUTPUT"
id: env
- name: Upload ${{ matrix.name }} Release Asset
uses: actions/[email protected]
Expand Down Expand Up @@ -217,7 +217,7 @@ jobs:
# shell: bash
# run: |
# source create-release.env/create-release.env
# echo "::set-output name=upload_url::$UPLOAD_URL"
# echo "upload_url=$UPLOAD_URL" >> "$GITHUB_OUTPUT"
# id: env
# - name: Upload windows Release Asset
# uses: actions/[email protected]
Expand Down
4 changes: 2 additions & 2 deletions build/.github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ jobs:
shell: bash
run: |
source create-release.env/create-release.env
echo "::set-output name=upload_url::$UPLOAD_URL"
echo "upload_url=$UPLOAD_URL" >> "$GITHUB_OUTPUT"
id: env
- name: Upload ${{ matrix.name }} Release Asset
uses: actions/[email protected]
Expand Down Expand Up @@ -204,7 +204,7 @@ jobs:
shell: bash
run: |
source create-release.env/create-release.env
echo "::set-output name=upload_url::$UPLOAD_URL"
echo "upload_url=$UPLOAD_URL" >> "$GITHUB_OUTPUT"
id: env
- name: Upload windows Release Asset
uses: actions/[email protected]
Expand Down

0 comments on commit 6902cb3

Please sign in to comment.