📦 Release major/v1.0.0 by @wayjam #5
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: 0x📦 Release New Version | |
run-name: 📦 Release ${{ inputs.semver }}/${{ inputs.custom_version }} by @${{ github.actor }} ${{ inputs.dry_run && '(🧪 Dry-Run)' || '' }} | |
on: | |
workflow_dispatch: | |
inputs: | |
semver: | |
type: choice | |
description: Which version you want to increment? | |
options: | |
- patch | |
- minor | |
- major | |
required: true | |
custom_version: | |
description: Manual Custom Version (Special Purpose, v*) | |
type: string | |
required: false | |
dry_run: | |
description: "Dry run?" | |
type: boolean | |
default: false | |
jobs: | |
test: | |
uses: ./.github/workflows/test.yml | |
release: | |
needs: test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Print Next Version | |
run: echo "${VERSION}" | |
- name: Bump version and push tag | |
id: tag_version | |
uses: mathieudutour/github-tag-action@v6.2 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
default_bump: ${{ inputs.semver }} | |
custom_tag: ${{ inputs.custom_version }} | |
tag_prefix: v | |
- name: Create a GitHub release | |
uses: ncipollo/release-action@v1 | |
with: | |
tag: ${{ steps.tag_version.outputs.new_tag }} | |
name: Release ${{ steps.tag_version.outputs.new_tag }} | |
body: ${{ steps.tag_version.outputs.changelog }} |