Skip to content

Commit d27ab77

Browse files
authored
Merge pull request #310 from DeployGate/fix/github_actions_deprecation
Use GITHUB_OUTPUT instead of set-output command
2 parents 175e4b7 + a04bfe1 commit d27ab77

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
bundler-cache: true
1616
- run: bundle exec rake build
1717
- id: gem
18-
run: echo "::set-output name=result::$(find pkg -name 'deploygate-*.gem' -type f | head -1)"
18+
run: echo "result=$(find pkg -name 'deploygate-*.gem' -type f | head -1)" >> $GITHUB_OUTPUT
1919
- run: |
2020
gem push '${{ steps.gem.outputs.result }}'
2121
env:

0 commit comments

Comments
 (0)