|
25 | 25 | id: auth |
26 | 26 | uses: actions/create-github-app-token@v3 |
27 | 27 | with: |
28 | | - app-id: ${{ secrets.AUTH_APP_ID }} |
| 28 | + client-id: ${{ secrets.AUTH_APP_ID }} |
29 | 29 | private-key: ${{ secrets.AUTH_APP_KEY }} |
30 | 30 |
|
31 | 31 | - name: Clean pnpm setup cache |
|
44 | 44 | run: pnpm install --frozen-lockfile |
45 | 45 |
|
46 | 46 | - name: Run release script |
47 | | - run: pnpx @localazy/workflow-scripts create-release-pr . |
| 47 | + run: pnpx @localazy/workflow-scripts create-release-pr |
48 | 48 | env: |
49 | 49 | GITHUB_TOKEN: ${{ steps.auth.outputs.token }} |
50 | 50 |
|
|
60 | 60 | id: auth |
61 | 61 | uses: actions/create-github-app-token@v3 |
62 | 62 | with: |
63 | | - app-id: ${{ secrets.AUTH_APP_ID }} |
| 63 | + client-id: ${{ secrets.AUTH_APP_ID }} |
64 | 64 | private-key: ${{ secrets.AUTH_APP_KEY }} |
65 | 65 |
|
66 | 66 | - name: Checkout repository |
@@ -102,12 +102,10 @@ jobs: |
102 | 102 | - name: Create and push git tag |
103 | 103 | id: git-tag |
104 | 104 | run: | |
105 | | - NAME=$(node -p "require('./package.json').name") |
106 | 105 | VERSION=$(node -p "require('./package.json').version") |
107 | | - TAG="${NAME}@${VERSION}" |
108 | | - git tag "${TAG}" |
109 | | - git push origin "${TAG}" |
110 | | - echo "tag=${TAG}" >> "$GITHUB_OUTPUT" |
| 106 | + git tag "${VERSION}" |
| 107 | + git push origin "${VERSION}" |
| 108 | + echo "tag=${VERSION}" >> "$GITHUB_OUTPUT" |
111 | 109 | echo "version=${VERSION}" >> "$GITHUB_OUTPUT" |
112 | 110 |
|
113 | 111 | - name: Create GitHub Release |
|
0 commit comments