Draft new release #42
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: "Draft new release" | |
on: | |
workflow_dispatch: | |
inputs: | |
new-version: | |
type: choice | |
description: "Which version you'd like to release?" | |
options: | |
- major (_.X.X) | |
- minor (X._.X) | |
- patch (X.X._) | |
- rc (X.X.X-rc) | |
- release (removes rc) | |
required: true | |
jobs: | |
draft-new-release: | |
name: "Draft a new release" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: Swatinem/rust-cache@v2 | |
- name: Install cargo-edit | |
run: cargo install cargo-edit | |
- name: Extracting version from input | |
run: | | |
VERSION=$(echo "${{github.event.inputs.new-version}}" | sed 's/ (.*)$//') | |
echo "VER=$VERSION" >> $GITHUB_ENV | |
- name: Bump new version in TOML files | |
run: | | |
OLD_VERSION=$(cargo pkgid | cut -d# -f2 | cut -d: -f2) | |
echo "OLD=$OLD_VERSION" >> $GITHUB_ENV | |
cargo set-version --workspace --bump $VER | |
NEW_VERSION=$(cargo pkgid | cut -d# -f2 | cut -d: -f2) | |
echo "NEW=$NEW_VERSION" >> $GITHUB_ENV | |
- name: Create release branch | |
run: | | |
git checkout -b release/$NEW | |
- name: Initialize mandatory git config | |
run: | | |
git config user.name "GitHub actions" | |
git config user.email [email protected] | |
- name: Updating Changelog and Dockerfile | |
run: .github/scripts/Bump.sh $OLD $NEW | |
- run: cargo check | |
- name: Commit changelog and manifest files | |
id: make-commit | |
run: | | |
git commit -sa -m "Prepare release $NEW" | |
echo "name=commit::$(git rev-parse HEAD)" >> $GITHUB_OUTPUT | |
- name: Push new branch | |
run: git push origin release/$NEW | |
- name: Create pull request | |
run: | | |
gh pr create -B main --title "Release-v$NEW" --body "Yay release" --label "Release" | |
env: | |
GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }} |