We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd8f57a commit 00895aaCopy full SHA for 00895aa
.github/workflows/publish.yml
@@ -10,9 +10,6 @@ jobs:
10
cd:
11
runs-on: ubuntu-latest
12
steps:
13
- - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
14
- with:
15
- token: ${{ secrets.PAT_RELEASE_PUSH }} # persists the token for pushing to the repo later
16
- uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4
17
with:
18
cache: 'npm'
@@ -25,6 +22,10 @@ jobs:
25
22
git config --global user.name 'GitHub Actions'
26
23
git config --global user.email 'github-actions@localhost'
27
24
+ - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
+ with:
+ token: ${{ secrets.PAT_RELEASE_PUSH }} # persists the token for pushing to the repo later
28
+
29
- uses: ./.github/actions/install-dependencies
30
31
- name: Update the version in the package files
0 commit comments