Browse Source

Rename BOTTY to ITCHY because we are Itchy Sats :)

new-http-api
itchymax 3 years ago
parent
commit
7180890c26
  1. 6
      .github/workflows/build-release-binary.yml
  2. 2
      .github/workflows/create-release.yml
  3. 8
      .github/workflows/draft-new-release.yml
  4. 2
      .github/workflows/preview-release.yml
  5. 2
      .github/workflows/release-docker.yml

6
.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

2
.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 }}

8
.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 }}

2
.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

2
.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

Loading…
Cancel
Save