Skip to content

Commit

Permalink
Merge pull request #95 from arunsathiya/master
Browse files Browse the repository at this point in the history
ci: Use GITHUB_OUTPUT envvar instead of set-output command
  • Loading branch information
nytamin authored Jan 1, 2024
2 parents 0358da8 + 8d9beb2 commit ceafe9b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
if [ -z "${{ secrets.NPM_TOKEN }}" ]; then
echo "env NPM_TOKEN not set!"
else
echo ::set-output name=is-ok::"1"
echo "is-ok="1"" >> $GITHUB_OUTPUT
fi
- name: Prepare Environment
if: ${{ steps.check-npm-token.outputs.is-ok }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
if [ -z "${{ secrets.NPM_TOKEN }}" ]; then
echo "env NPM_TOKEN not set!"
else
echo ::set-output name=is-ok::"1"
echo "is-ok="1"" >> $GITHUB_OUTPUT
fi
- name: Prepare Environment
if: ${{ steps.check-npm-token.outputs.is-ok }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:
if [ -z "${{ secrets.NPM_TOKEN }}" ]; then
echo "env NPM_TOKEN not set!"
else
echo ::set-output name=is-ok::"1"
echo "is-ok="1"" >> $GITHUB_OUTPUT
fi
- name: Prepare Environment
if: ${{ steps.check-npm-token.outputs.is-ok }}
Expand Down

0 comments on commit ceafe9b

Please sign in to comment.