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

Commit

Permalink
fix: 権限ミス
Browse files Browse the repository at this point in the history
  • Loading branch information
yuito-it committed Apr 11, 2024
1 parent c45be1b commit b2660a4
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,13 @@ jobs:
git config --global user.email "[email protected]"
git config --global user.name "GitHub Actions"
npm version patch
- name: Del workflow
run: |
rm -r ./.github
git add *
git commit -a -m "Del workflow"
- name: Push changes
if: ${{ env.NPM_VERSION >= env.NPM_NEW_VERSION }}
env:
Expand Down Expand Up @@ -78,6 +84,12 @@ jobs:
git config --global user.name "GitHub Actions"
npm version minor
- name: Del workflow
run: |
rm -r ./.github
git add *
git commit -a -m "Del workflow"
- name: Push changes
if: ${{ env.NPM_VERSION >= env.NPM_NEW_VERSION }}
env:
Expand Down Expand Up @@ -118,6 +130,12 @@ jobs:
git config --global user.name "GitHub Actions"
npm version major
- name: Del workflow
run: |
rm -r ./.github
git add *
git commit -a -m "Del workflow"
- name: Push changes
if: ${{ env.NPM_VERSION >= env.NPM_NEW_VERSION }}
env:
Expand Down

0 comments on commit b2660a4

Please sign in to comment.