Skip to content

Commit

Permalink
Add workflow for automatically generating release (#783)
Browse files Browse the repository at this point in the history
  • Loading branch information
inahga authored Jan 31, 2024
1 parent 95f245b commit dd383ed
Showing 1 changed file with 92 additions and 0 deletions.
92 changes: 92 additions & 0 deletions .github/workflows/make-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
name: make-release

on:
workflow_dispatch:
inputs:
target_branch:
description: >-
JSON array of branches to target. The first branch in the array will
be marked as the latest release.
required: false
type: string
default: '["main"]'

jobs:
bump-version:
strategy:
matrix:
target_branch: ${{ fromJSON(inputs.target_branch) }}
runs-on: ubuntu-latest
env:
CARGO_EDIT_VERSION: 0.12.2
steps:
- uses: actions/checkout@v4
with:
ref: '${{ matrix.target_branch }}'
token: '${{ secrets.DIVVIUP_GITHUB_AUTOMATION_RELEASE_PAT }}'

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable

- name: Cache cargo edit
uses: actions/cache@v4
with:
path: ${{ runner.tool_cache }}/cargo-edit
key: cargo-edit-${{ env.CARGO_EDIT_VERSION }}
- name: Add the tool cache directory to the search path
run: echo "${{ runner.tool_cache }}/cargo-edit/bin/" >>$GITHUB_PATH
- name: Ensure cargo-edit is installed
run: |
cargo install \
--root ${{ runner.tool_cache }}/cargo-edit \
--version ${{ env.CARGO_EDIT_VERSION }} \
cargo-edit
- run: cargo set-version --bump patch
- run: git diff
- name: Push changes
run: |
git config user.email "[email protected]"
git config user.name "divviup-github-automation"
git commit -am "Bump divviup-api patch version, triggered by @${{ github.actor }}"
git push
# This job is kept separate from the previous one to enable retrying it without
# bumping the version number again.
make-release:
strategy:
matrix:
target_branch: ${{ fromJSON(inputs.target_branch) }}
runs-on: ubuntu-latest
needs: [bump-version]
steps:
- uses: actions/checkout@v4
with:
ref: '${{ matrix.target_branch }}'
token: '${{ secrets.DIVVIUP_GITHUB_AUTOMATION_RELEASE_PAT }}'

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable

- name: Create release
run: |
# Determine the workspace version.
VERSION=$(cargo metadata --no-deps --format-version 1 | jq -er '.packages[0].version')
TARGET_BRANCH="${{ matrix.target_branch }}"
FIRST_BRANCH="${{ fromJSON(inputs.target_branch)[0] }}"
LATEST=
if [ "$TARGET_BRANCH" == "$FIRST_BRANCH" ]; then
LATEST="--latest=true"
else
LATEST="--latest=false"
fi
gh release create "$VERSION" \
--generate-notes \
--target "$TARGET_BRANCH" \
$LATEST
env:
GH_TOKEN: '${{ secrets.DIVVIUP_GITHUB_AUTOMATION_RELEASE_PAT }}'

0 comments on commit dd383ed

Please sign in to comment.