Skip to content
This repository was archived by the owner on Jul 18, 2024. It is now read-only.

Commit

Permalink
fix: rebaseコマンド修正
Browse files Browse the repository at this point in the history
  • Loading branch information
yuito-it committed Apr 11, 2024
1 parent e699e25 commit 89d4c90
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Rebase
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: git rebase ${{ github.event.pull_request.base.ref }}
run: git rebase origin ${{ github.event.pull_request.base.ref }}

- name: Update Version
if: ${{ env.NPM_VERSION >= env.NPM_NEW_VERSION }}
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
- name: Rebase
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: git rebase ${{ github.event.pull_request.base.ref }}
run: git rebase origin ${{ github.event.pull_request.base.ref }}

- name: Update Version
if: ${{ env.NPM_VERSION >= env.NPM_NEW_VERSION }}
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
- name: Rebase
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: git rebase ${{ github.event.pull_request.base.ref }}
run: git rebase origin ${{ github.event.pull_request.base.ref }}

- name: Update Version
if: ${{ env.NPM_VERSION >= env.NPM_NEW_VERSION }}
Expand Down

0 comments on commit 89d4c90

Please sign in to comment.