Skip to content

Commit

Permalink
Merge pull request #310 from DeployGate/fix/github_actions_deprecation
Browse files Browse the repository at this point in the history
Use GITHUB_OUTPUT instead of set-output command
  • Loading branch information
jmatsu authored Feb 14, 2023
2 parents 175e4b7 + a04bfe1 commit d27ab77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
bundler-cache: true
- run: bundle exec rake build
- id: gem
run: echo "::set-output name=result::$(find pkg -name 'deploygate-*.gem' -type f | head -1)"
run: echo "result=$(find pkg -name 'deploygate-*.gem' -type f | head -1)" >> $GITHUB_OUTPUT
- run: |
gem push '${{ steps.gem.outputs.result }}'
env:
Expand Down

0 comments on commit d27ab77

Please sign in to comment.