Skip to content

Commit

Permalink
Fix Publish GHA Workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Ariflo committed Jul 21, 2023
1 parent 1f0d895 commit b4d739d
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ on:
- "master"

env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.ARI_ADMIN_PAT_TOKEN }}
GH_TOKEN: ${{ secrets.ARI_ADMIN_PAT_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

jobs:
Expand All @@ -16,7 +17,10 @@ jobs:
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
token: ${{ secrets.ARI_ADMIN_PAT_TOKEN }}

- name: Prepare repository
run: git fetch --unshallow --tags

- name: Setup node
uses: actions/setup-node@v3
Expand Down Expand Up @@ -63,7 +67,10 @@ jobs:
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
token: ${{ secrets.ARI_ADMIN_PAT_TOKEN }}

- name: Prepare repository
run: git fetch --unshallow --tags

- name: Setup node
uses: actions/setup-node@v3
Expand Down

0 comments on commit b4d739d

Please sign in to comment.