Skip to content

Commit

Permalink
Update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
rcvalle committed Nov 16, 2024
1 parent bb54157 commit fd11848
Showing 1 changed file with 83 additions and 2 deletions.
85 changes: 83 additions & 2 deletions .github/workflows/crate.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,30 @@
name: crate

on:
release:
types: [published]
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:
Expand All @@ -23,6 +41,69 @@ jobs:
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}}"
Expand Down

0 comments on commit fd11848

Please sign in to comment.