Skip to content

Commit c522c42

Browse files
mokuzonYang-33
andauthored
Run bundle install at release workflow (#580)
It fixes the issue where the release workflow fails because the `bundle install` is not running. Actual failure log: http://github.com/line/line-bot-sdk-ruby/actions/runs/14963670963/job/42029838206#step:5:66 --------- Co-authored-by: Yuta Kasai <[email protected]>
1 parent f8da531 commit c522c42

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,15 @@ jobs:
1616
permissions:
1717
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
1818
contents: write # IMPORTANT: this permission is required for `rake release` to push the release tag
19+
issues: write
1920

2021
steps:
2122
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2223
- uses: ruby/setup-ruby@e34163cd15f4bb403dcd72d98e295997e6a55798 # v1.238.0
2324
with:
2425
bundler-cache: true
2526
ruby-version: 3.3
27+
- run: bundle install
2628
- name: Update version file with the release version
2729
run: |
2830
if [ "${{ github.event_name }}" == "workflow_dispatch" ]; then

0 commit comments

Comments
 (0)