Skip to content

Commit

Permalink
fix(workflow): actions library name
Browse files Browse the repository at this point in the history
  • Loading branch information
clukhei committed Sep 27, 2023
1 parent 9e70e47 commit dedbee9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-ruby@v1
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2'
ruby-version: '3.0'
- run: |
gem install bundler
bundle install
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v2
- name: Set Tag env
run: echo "NPM_TAG=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
- uses: actions/setup-ruby@v1
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2'
ruby-version: '3.0'
- run: |
gem install bundler
bundle install
Expand Down

0 comments on commit dedbee9

Please sign in to comment.