mirror of
https://github.com/pseXperiments/icicle.git
synced 2026-01-08 23:17:54 -05:00
51 lines
1.5 KiB
YAML
51 lines
1.5 KiB
YAML
name: Release
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
releaseType:
|
|
description: 'Release type'
|
|
required: true
|
|
default: 'minor'
|
|
type: choice
|
|
options:
|
|
- patch
|
|
- minor
|
|
- major
|
|
|
|
jobs:
|
|
release:
|
|
name: Release
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
ssh-key: ${{ secrets.DEPLOY_KEY }}
|
|
- name: Setup Cache
|
|
id: cache
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: |
|
|
~/.cargo/bin/
|
|
~/.cargo/registry/index/
|
|
~/.cargo/registry/cache/
|
|
~/.cargo/git/db/
|
|
key: ${{ runner.os }}-cargo-${{ hashFiles('~/.cargo/bin/cargo-workspaces') }}
|
|
- name: Install cargo-workspaces
|
|
if: steps.cache.outputs.cache-hit != 'true'
|
|
run: cargo install cargo-workspaces
|
|
- name: Bump rust crate versions, commit, and tag
|
|
working-directory: wrappers/rust
|
|
# https://github.com/pksunkara/cargo-workspaces?tab=readme-ov-file#version
|
|
run: |
|
|
git config user.name release-bot
|
|
git config user.email release-bot@ingonyama.com
|
|
cargo workspaces version ${{ inputs.releaseType }} -y --no-individual-tags -m "Bump rust crates' version"
|
|
- name: Create draft release
|
|
env:
|
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
run: |
|
|
LATEST_TAG=$(git describe --tags --abbrev=0)
|
|
gh release create $LATEST_TAG --generate-notes -d --verify-tag -t "Release $LATEST_TAG"
|