Skip to content

Commit 6e4f7bb

Browse files
committed
ci: try again to get the push to work
1 parent cd8f57a commit 6e4f7bb

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/publish.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,22 @@ jobs:
1010
cd:
1111
runs-on: ubuntu-latest
1212
steps:
13+
- name: Config GitHub user
14+
shell: bash
15+
run: |
16+
git config --global user.name 'GitHub Actions'
17+
git config --global user.email 'github-actions@localhost'
18+
1319
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1420
with:
1521
token: ${{ secrets.PAT_RELEASE_PUSH }} # persists the token for pushing to the repo later
22+
1623
- uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4
1724
with:
1825
cache: 'npm'
1926
node-version-file: '.nvmrc'
2027
registry-url: 'https://registry.npmjs.org'
2128

22-
- name: Config GitHub user
23-
shell: bash
24-
run: |
25-
git config --global user.name 'GitHub Actions'
26-
git config --global user.email 'github-actions@localhost'
27-
2829
- uses: ./.github/actions/install-dependencies
2930

3031
- name: Update the version in the package files

0 commit comments

Comments
 (0)