From 92a5ad15f8177c8ce49e8afc9e760ce8b68f9f64 Mon Sep 17 00:00:00 2001 From: quobix Date: Fri, 21 Nov 2025 20:47:59 -0800 Subject: [PATCH] tuning release --- .github/workflows/publish.yaml | 4 ++-- .github/workflows/tag.yaml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 17a6921..f021988 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -27,7 +27,7 @@ jobs: version: latest args: release --clean env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} publish_npm: name: Publish to NPM @@ -95,7 +95,7 @@ jobs: with: registry: ghcr.io username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} + password: ${{ secrets.GH_TOKEN }} - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 diff --git a/.github/workflows/tag.yaml b/.github/workflows/tag.yaml index 0d40b77..a9504a2 100644 --- a/.github/workflows/tag.yaml +++ b/.github/workflows/tag.yaml @@ -14,13 +14,13 @@ jobs: - uses: actions-ecosystem/action-get-merged-pull-request@v1 id: get-merged-pull-request with: - github_token: ${{ secrets.GITHUB_TOKEN }} + github_token: ${{ secrets.GH_TOKEN }} - uses: actions-ecosystem/action-release-label@v1 id: release-label if: ${{ steps.get-merged-pull-request.outputs.title != null }} with: - github_token: ${{ secrets.GITHUB_TOKEN }} + github_token: ${{ secrets.GH_TOKEN }} labels: ${{ steps.get-merged-pull-request.outputs.labels }} - uses: actions-ecosystem/action-get-latest-tag@v1 @@ -52,7 +52,7 @@ jobs: - uses: peter-evans/repository-dispatch@v1 if: ${{ steps.bump-semver.outputs.new_version != null }} with: - token: ${{ secrets.GITHUB_TOKEN }} + token: ${{ secrets.GH_TOKEN }} repository: pb33f/harific event-type: publish-event client-payload: '{"new-tag": "${{ steps.bump-semver.outputs.new_version }}", "release-notes": "${{ steps.regex-match.outputs.group1 }}"}'