diff --git a/.github/workflows/build-release-binary.yml b/.github/workflows/build-release-binary.yml index 8167b61..5ed3d95 100644 --- a/.github/workflows/build-release-binary.yml +++ b/.github/workflows/build-release-binary.yml @@ -56,7 +56,7 @@ jobs: uses: actions/checkout@v2.4.0 with: ref: ${{ github.event.release.target_commitish }} - token: ${{ secrets.BOTTY_GITHUB_TOKEN }} + token: ${{ secrets.ITCHY_GITHUB_TOKEN }} - name: Install toolchain from `rust-toolchain.toml` run: rustup show @@ -139,7 +139,7 @@ jobs: - name: Upload archive uses: actions/upload-release-asset@v1.0.2 env: - GITHUB_TOKEN: ${{ secrets.BOTTY_GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.ITCHY_GITHUB_TOKEN }} with: upload_url: ${{ github.event.release.upload_url }} asset_path: ./${{ steps.create-archive-name.outputs.archive }} @@ -155,7 +155,7 @@ jobs: contents: read packages: write env: - GITHUB_TOKEN: ${{ secrets.BOTTY_GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.ITCHY_GITHUB_TOKEN }} steps: - name: Checkout tagged commit uses: actions/checkout@v2.4.0 diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 11802ff..37b901a 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -25,7 +25,7 @@ jobs: - name: Create release uses: actions/create-release@v1 env: - GITHUB_TOKEN: ${{ secrets.BOTTY_GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.ITCHY_GITHUB_TOKEN }} with: tag_name: ${{ steps.extract-version.outputs.version }} release_name: ${{ steps.extract-version.outputs.version }} diff --git a/.github/workflows/draft-new-release.yml b/.github/workflows/draft-new-release.yml index 46471c1..d04fa11 100644 --- a/.github/workflows/draft-new-release.yml +++ b/.github/workflows/draft-new-release.yml @@ -19,15 +19,15 @@ jobs: steps: - uses: actions/checkout@v2.4.0 with: - token: ${{ secrets.BOTTY_GITHUB_TOKEN }} + token: ${{ secrets.ITCHY_GITHUB_TOKEN }} - name: Create release branch run: git checkout -b ${{ env.RELEASE_BRANCH }} - name: Initialize mandatory git config run: | - git config user.name "${{ secrets.BOTTY_NAME }}" - git config user.email ${{ secrets.BOTTY_EMAIL }} + git config user.name "${{ secrets.ITCHY_NAME }}" + git config user.email ${{ secrets.ITCHY_EMAIL }} - name: Bump version in Cargo.toml uses: thomaseizinger/set-crate-version@1.0.0 @@ -66,4 +66,4 @@ jobs: env: # Using a bot account is important to trigger subsequent workflows. # See https://devopsdirective.com/posts/2020/07/stupid-github-actions/#2----recursive-action. - GITHUB_TOKEN: ${{ secrets.BOTTY_GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.ITCHY_GITHUB_TOKEN }} diff --git a/.github/workflows/preview-release.yml b/.github/workflows/preview-release.yml index 289099e..a393143 100644 --- a/.github/workflows/preview-release.yml +++ b/.github/workflows/preview-release.yml @@ -10,7 +10,7 @@ jobs: name: Create preview release runs-on: ubuntu-latest env: - GITHUB_TOKEN: ${{ secrets.BOTTY_GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.ITCHY_GITHUB_TOKEN }} steps: - uses: actions/checkout@v2.4.0 diff --git a/.github/workflows/release-docker.yml b/.github/workflows/release-docker.yml index 5d0ea0b..cd50ad8 100644 --- a/.github/workflows/release-docker.yml +++ b/.github/workflows/release-docker.yml @@ -16,7 +16,7 @@ jobs: contents: read packages: write env: - GITHUB_TOKEN: ${{ secrets.BOTTY_GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.ITCHY_GITHUB_TOKEN }} steps: - name: Checkout tagged commit uses: actions/checkout@v2.4.0