Publish Rust Client #22
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Rust Client | |
on: | |
workflow_dispatch: | |
inputs: | |
client: | |
description: Client | |
required: true | |
default: asset | |
type: choice | |
options: | |
- asset | |
- bridge | |
level: | |
description: Level | |
required: true | |
default: patch | |
type: choice | |
options: | |
- patch | |
- minor | |
- major | |
- rc | |
- beta | |
- alpha | |
- release | |
- version | |
version: | |
description: Version | |
required: false | |
type: string | |
dry_run: | |
description: Dry run | |
required: true | |
default: true | |
type: boolean | |
env: | |
CACHE: true | |
jobs: | |
build_programs: | |
name: Programs | |
uses: ./.github/workflows/build-programs.yml | |
secrets: inherit | |
build_rust_client: | |
name: Rust Client | |
uses: ./.github/workflows/build-rust-client.yml | |
secrets: inherit | |
with: | |
client_matrix: "[\"${{ inputs.client }}\"]" | |
test_rust_client: | |
name: Rust Client | |
needs: [build_programs, build_rust_client] | |
uses: ./.github/workflows/test-rust-client.yml | |
secrets: inherit | |
with: | |
client_matrix: "[\"${{ inputs.client }}\"]" | |
publish_crate: | |
name: Rust Client / Publish Crate | |
runs-on: buildjet-8vcpu-ubuntu-2204 | |
needs: test_rust_client | |
permissions: | |
contents: write | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.SERVICE_TOKEN }} | |
- name: Load environment variables | |
run: cat .github/.env >> $GITHUB_ENV | |
- name: Install Rust | |
uses: nifty-oss/actions/install-rust@v1 | |
with: | |
toolchain: ${{ env.RUST_VERSION }} | |
- name: Install cargo-release | |
uses: nifty-oss/actions/install-cargo-release@v1 | |
with: | |
cache: ${{ env.CACHE }} | |
- name: Publish crate | |
working-directory: ./clients/rust/${{ inputs.client }} | |
run: | | |
if [ "${{ inputs.level }}" == "version" ]; then | |
BUMP=${{ inputs.version }} | |
else | |
BUMP=${{ inputs.level }} | |
fi | |
if [ "${{ inputs.dry_run }}" == "false" ]; then | |
git config user.name ${{ env.COMMIT_USER_NAME }} | |
git config user.email ${{ env.COMMIT_USER_EMAIL }} | |
cargo login ${{ secrets.CRATES_TOKEN }} | |
cargo release $BUMP --no-push --no-tag --no-confirm --execute | |
git reset --soft HEAD~1 | |
CLIENT_NAME=`grep -E '^name\s*=' Cargo.toml | awk -F '"' '{print $2}'` | |
CLIENT_VERSION=`grep -E '^version\s*=' Cargo.toml | awk -F '"' '{print $2}'` | |
echo CLIENT_NAME="${CLIENT_NAME}" >> $GITHUB_ENV | |
echo CLIENT_VERSION="${CLIENT_VERSION}" >> $GITHUB_ENV | |
else | |
cargo login ${{ secrets.CRATES_TOKEN }} | |
cargo release $BUMP || true | |
fi | |
- name: Commit and tag new version | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
if: github.event.inputs.dry_run == 'false' | |
with: | |
commit_message: 'chore: Release ${{ env.CLIENT_NAME }} version ${{ env.CLIENT_VERSION }}' | |
tagging_message: ${{ env.CLIENT_NAME }}@v${{ env.CLIENT_VERSION }} |