Skip to content

Commit c4a8080

Browse files
committed
refactor: Update placeholders
1 parent cc47ddc commit c4a8080

3 files changed

Lines changed: 8 additions & 10 deletions

File tree

.github/auto-release-chain.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,4 @@ jobs:
5151
uses: ./.github/actions/merge-release-pr
5252
with:
5353
package: ${{ steps.next-pkg.outputs.next_package }}
54-
github-token: ${{ secrets.RELEASE_PLEASE_TOKEN }}
54+
github-token: ${{ secrets.GITHUB_TOKEN }}

.github/relase-packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
uses: ./.github/actions/merge-release-pr
5757
with:
5858
package: ${{ github.event.inputs.package }}
59-
github-token: ${{ secrets.RELEASE_PLEASE_TOKEN }}
59+
github-token: ${{ secrets.GITHUB_TOKEN }}
6060

6161
- name: Check merge result
6262
run: |

.github/release-please.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@ jobs:
3232
uses: googleapis/release-please-action@v4
3333
id: release
3434
with:
35-
token: ${{ secrets.RELEASE_PLEASE_TOKEN }} # TODO: Change token on prod
35+
token: ${{ secrets.GITHUB_TOKEN }}
3636

3737
# This step is mandatory because release-please nor its plugin
3838
# node-workspace does not update the manifest automatically.
3939
# Also adds missing release tags that node-workspace plugin doesn't create.
4040
- name: Update manifest and add tags to release PRs
4141
env:
42-
GH_TOKEN: ${{ secrets.RELEASE_PLEASE_TOKEN }}
42+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4343
run: |
4444
# Configure git identity
4545
git config user.name "github-actions[bot]"
@@ -160,15 +160,13 @@ jobs:
160160
run: |
161161
cd "${{ needs.release-please.outputs.package_path }}"
162162
echo "📦 Installing dependencies for ${{ needs.release-please.outputs.package_name }}@${{ needs.release-please.outputs.package_version }}"
163-
# TODO: Uncomment the following lines when ready to publish
164-
# npm ci
163+
npm ci
165164
166165
- name: Publish to NPM
167166
run: |
168167
cd "${{ needs.release-please.outputs.package_path }}"
169168
echo "🚀 Publishing ${{ needs.release-please.outputs.package_name }}@${{ needs.release-please.outputs.package_version }} to NPM..."
170-
171-
# TODO: Uncomment the following lines when ready to publish
172-
# npm publish --access public
173-
169+
170+
npm publish --access public
171+
174172
echo "✅ Successfully published ${{ needs.release-please.outputs.package_name }}@${{ needs.release-please.outputs.package_version }}"

0 commit comments

Comments
 (0)