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 uses: actions/checkout@v2.4.0
with: with:
ref: ${{ github.event.release.target_commitish }} ref: ${{ github.event.release.target_commitish }}
token: ${{ secrets.BOTTY_GITHUB_TOKEN }} token: ${{ secrets.ITCHY_GITHUB_TOKEN }}
- name: Install toolchain from `rust-toolchain.toml` - name: Install toolchain from `rust-toolchain.toml`
run: rustup show run: rustup show
@ -139,7 +139,7 @@ jobs:
- name: Upload archive - name: Upload archive
uses: actions/upload-release-asset@v1.0.2 uses: actions/upload-release-asset@v1.0.2
env: env:
GITHUB_TOKEN: ${{ secrets.BOTTY_GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.ITCHY_GITHUB_TOKEN }}
with: with:
upload_url: ${{ github.event.release.upload_url }} upload_url: ${{ github.event.release.upload_url }}
asset_path: ./${{ steps.create-archive-name.outputs.archive }} asset_path: ./${{ steps.create-archive-name.outputs.archive }}
@ -155,7 +155,7 @@ jobs:
contents: read contents: read
packages: write packages: write
env: env:
GITHUB_TOKEN: ${{ secrets.BOTTY_GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.ITCHY_GITHUB_TOKEN }}
steps: steps:
- name: Checkout tagged commit - name: Checkout tagged commit
uses: actions/checkout@v2.4.0 uses: actions/checkout@v2.4.0

2
.github/workflows/create-release.yml

@ -25,7 +25,7 @@ jobs:
- name: Create release - name: Create release
uses: actions/create-release@v1 uses: actions/create-release@v1
env: env:
GITHUB_TOKEN: ${{ secrets.BOTTY_GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.ITCHY_GITHUB_TOKEN }}
with: with:
tag_name: ${{ steps.extract-version.outputs.version }} tag_name: ${{ steps.extract-version.outputs.version }}
release_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: steps:
- uses: actions/checkout@v2.4.0 - uses: actions/checkout@v2.4.0
with: with:
token: ${{ secrets.BOTTY_GITHUB_TOKEN }} token: ${{ secrets.ITCHY_GITHUB_TOKEN }}
- name: Create release branch - name: Create release branch
run: git checkout -b ${{ env.RELEASE_BRANCH }} run: git checkout -b ${{ env.RELEASE_BRANCH }}
- name: Initialize mandatory git config - name: Initialize mandatory git config
run: | run: |
git config user.name "${{ secrets.BOTTY_NAME }}" git config user.name "${{ secrets.ITCHY_NAME }}"
git config user.email ${{ secrets.BOTTY_EMAIL }} git config user.email ${{ secrets.ITCHY_EMAIL }}
- name: Bump version in Cargo.toml - name: Bump version in Cargo.toml
uses: thomaseizinger/set-crate-version@1.0.0 uses: thomaseizinger/set-crate-version@1.0.0
@ -66,4 +66,4 @@ jobs:
env: env:
# Using a bot account is important to trigger subsequent workflows. # Using a bot account is important to trigger subsequent workflows.
# See https://devopsdirective.com/posts/2020/07/stupid-github-actions/#2----recursive-action. # 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 name: Create preview release
runs-on: ubuntu-latest runs-on: ubuntu-latest
env: env:
GITHUB_TOKEN: ${{ secrets.BOTTY_GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.ITCHY_GITHUB_TOKEN }}
steps: steps:
- uses: actions/checkout@v2.4.0 - uses: actions/checkout@v2.4.0

2
.github/workflows/release-docker.yml

@ -16,7 +16,7 @@ jobs:
contents: read contents: read
packages: write packages: write
env: env:
GITHUB_TOKEN: ${{ secrets.BOTTY_GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.ITCHY_GITHUB_TOKEN }}
steps: steps:
- name: Checkout tagged commit - name: Checkout tagged commit
uses: actions/checkout@v2.4.0 uses: actions/checkout@v2.4.0

Loading…
Cancel
Save