release #12
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: "release" | |
on: | |
workflow_dispatch: | |
inputs: | |
bump: | |
type: choice | |
description: Semver to bump | |
default: 'none' | |
options: | |
- none | |
- patch | |
- minor | |
- major | |
permissions: | |
contents: write | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Print input | |
run : | | |
echo "bump: ${{ github.event.inputs.bump }}\n" | |
- name: Checkout 🧰 | |
uses: actions/checkout@v3 | |
- name: Install semver-tool asdf | |
uses: asdf-vm/actions/install@v1 | |
with: | |
tool_versions: | | |
semver 3.3.0 | |
- name: Get latest release | |
uses: rez0n/actions-github-release@main | |
id: latest_release | |
env: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
repository: "SteamDeckHomebrew/decky-installer" | |
type: "nodraft" | |
- name: Prepare tag ⚙️ | |
id: ready_tag | |
run: | | |
export VERSION=${{ steps.latest_release.outputs.release }} | |
echo "VERS: $VERSION" | |
OUT="notsemver" | |
if [[ "${{github.event.inputs.bump}}" != "none" ]]; then | |
OUT=$(semver bump ${{github.event.inputs.bump}} "$VERSION") | |
printf "OUT: ${OUT}\n" | |
else | |
printf "no bump selected. Defaulting to a patch bump.\n" | |
OUT=$(semver bump patch "$VERSION") | |
printf "OUT: ${OUT}\n" | |
fi | |
echo "vOUT: v$OUT" | |
echo tag_name=v$OUT >> $GITHUB_OUTPUT | |
- name: Push tag 📤 | |
uses: rickstaa/action-create-tag@v1.3.2 | |
if: ${{ steps.ready_tag.outputs.tag_name && github.event_name == 'workflow_dispatch' && !env.ACT }} | |
with: | |
tag: ${{ steps.ready_tag.outputs.tag_name }} | |
message: Pre-release ${{ steps.ready_tag.outputs.tag_name }} | |
- name: Release 📦 | |
uses: softprops/action-gh-release@v1 | |
if: ${{ github.event_name == 'workflow_dispatch' && !env.ACT }} | |
with: | |
name: Version ${{ steps.ready_tag.outputs.tag_name }} | |
tag_name: ${{ steps.ready_tag.outputs.tag_name }} | |
files: | | |
${{ github.workspace }}/gui/* | |
${{ github.workspace }}/cli/* | |
prerelease: false | |
generate_release_notes: true | |
draft: true | |