Skip to content

Update workflows

Update workflows #1

Workflow file for this run

name: crate
on:
push:
branches: main
workflow_dispatch:
inputs:
version_increment:
description: 'Version to increment'
required: true
default: 'patch'
options:
- major
- minor
- patch
jobs:
build:
name: Build and publish
permissions:
contents: write
id-token: write
packages: write
pages: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Rust
run: |
rustup update nightly
rustup default nightly
- name: Build
run: |
cargo build --verbose
cargo test --verbose
- name: Update version
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
version_increment="${{ github.event.inputs.version_increment }}"
version_increment="${version_increment:-patch}"
if [[ "$version_increment" == "patch" ]]; then
commit_message=$(git log -1 --pretty=%B)
if [[ "$commit_message" =~ Version-increment:\ (major|minor|patch) ]]; then
version_increment="${BASH_REMATCH[1]}"
fi
fi
version=$(grep -E "version = \"[0-9]+\.[0-9]+\.[0-9]+\"" Cargo.toml | grep -Eo '\"[0-9]+\.[0-9]+\.[0-9]+\"' | tr -d '"')
major=$(echo "$version" | cut -d. -f1)
minor=$(echo "$version" | cut -d. -f2)
patch=$(echo "$version" | cut -d. -f3)
case $version_increment in
major)
new_major=$((major + 1))
new_minor=0
new_patch=0
;;
minor)
new_major=$((major))
new_minor=$((minor + 1))
new_patch=0
;;
patch)
new_major=$((major))
new_minor=$((minor))
new_patch=$((patch + 1))
;;
esac
new_version="${new_major}.${new_minor}.${new_patch}"
sed -i -E "s/(version = \")[0-9]+\.[0-9]+\.[0-9]+/\1${new_version}/" Cargo.toml
echo "version=$major.$minor.$patch" >> $GITHUB_ENV
echo "new_version=$new_major.$new_minor.$new_patch" >> $GITHUB_ENV
git config --global user.email "[email protected]"
git config --global user.name "Ramon de C Valle"
git add Cargo.toml
git commit -m "Update version to $new_major.$new_minor.$new_patch"
git push origin main
- name: Create new release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
changelog=$(mktemp)
if [[ "${{ env.version }}" != "0.0.0" ]]; then
git fetch --all -t
git log "v${{ env.version }}"..HEAD --pretty='format:* %s' > "$changelog"
else
git log --pretty='format:* %s' > "$changelog"
fi
gh release create "v${{ env.new_version }}" -F "$changelog" -t "v${{ env.new_version }}"
rm "$changelog"
- name: Publish to crates.io
env:
CARGO_REGISTRY_TOKEN: "${{secrets.CARGO_REGISTRY_TOKEN}}"
run: cargo publish --verbose