Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions .github/workflows/auto-changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,7 @@ jobs:
node-version: '20.x'
cache: yarn

- name: Create .env
run: |
echo "NPM_TOKEN=${{ secrets.NPM_TOKEN }}" > .env


- name: Install dependencies
run: |
Expand All @@ -53,8 +51,7 @@ jobs:
- name: post-install
run: sh .script/post-install.sh

- name: Remove .env
run: rm .env


- name: Configure Git
run: |
Expand Down
7 changes: 0 additions & 7 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,6 @@ jobs:
node-version: '20.x'
cache: yarn

- name: Create .env
run: |
echo "NPM_TOKEN=${{ secrets.NPM_TOKEN }}" > .env

- name: Install dependencies
run: |
sh .script/pre-install.sh
Expand Down Expand Up @@ -87,6 +83,3 @@ jobs:

- name: post-install
run: sh .script/post-install.sh

- name: Remove .env
run: rm .env
8 changes: 1 addition & 7 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ jobs:
node-version: '20.x'
registry-url: 'https://npm.pkg.github.com'
scope: '@ummgoban'
token: ${{ secrets.NPM_TOKEN }}

- name: Enable Corepack and Set yarn Version
run: |
Expand All @@ -89,10 +90,6 @@ jobs:
node-version: '20.x'
cache: yarn

- name: Create .env
run: |
echo "NPM_TOKEN=${{ secrets.NPM_TOKEN }}" > .env

- name: Install dependencies
run: |
sh .script/pre-install.sh
Expand Down Expand Up @@ -148,6 +145,3 @@ jobs:

- name: post-install
run: sh .script/post-install.sh

- name: Remove .env
run: rm .env
Loading