Skip to content

Commit defa1b1

Browse files
authored
build: test in production (#107)
async
1 parent 04180f7 commit defa1b1

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

.github/workflows/release-extensions.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -280,6 +280,9 @@ jobs:
280280
git config --local user.email "[email protected]"
281281
git config --local user.name "GitHub Action"
282282
283+
# Configure git to use the PAT for authentication
284+
git remote set-url origin https://x-access-token:${{ secrets.IDEE_GH_TOKEN }}@github.com/${{ github.repository }}.git
285+
283286
# Add all changes (including version bumps and tags)
284287
git add .
285288

.github/workflows/release-npm.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ jobs:
6464
- name: Checkout
6565
uses: actions/checkout@v4
6666
with:
67+
token: ${{ secrets.IDEE_GH_TOKEN }}
6768
fetch-depth: 0
6869
ref: ${{ inputs.branch || github.ref }}
6970

@@ -111,6 +112,7 @@ jobs:
111112
- name: Checkout
112113
uses: actions/checkout@v4
113114
with:
115+
token: ${{ secrets.IDEE_GH_TOKEN }}
114116
fetch-depth: 0
115117
ref: ${{ inputs.branch || github.ref }}
116118

0 commit comments

Comments
 (0)