This repository has been archived by the owner on Nov 2, 2024. It is now read-only.
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
# yamllint disable rule:comments | |
--- | |
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
name: "Release" | |
'on': | |
workflow_dispatch: | |
schedule: | |
- cron: "0 0 1 * *" # 1st of every month at midnight | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Generate Token | |
uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1 | |
id: app-token | |
with: | |
app-id: "${{ secrets.BOT_APP_ID }}" | |
private-key: "${{ secrets.BOT_APP_PRIVATE_KEY }}" | |
- name: Checkout Default Branch | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
with: | |
token: "${{ steps.app-token.outputs.token }}" | |
- name: Create Release | |
shell: bash | |
env: | |
GITHUB_TOKEN: "${{ steps.app-token.outputs.token }}" | |
run: | | |
# Retrieve previous release tag | |
previous_tag="$(gh release list --limit 1 | awk '{ print $1 }')" | |
previous_major="${previous_tag%%\.*}" | |
previous_minor="${previous_tag#*.}" | |
previous_minor="${previous_minor%.*}" | |
previous_patch="${previous_tag##*.}" | |
# Determine next release tag | |
next_major_minor="$(date +'%Y').$(date +'%-m')" | |
if [[ "${previous_major}.${previous_minor}" == "${next_major_minor}" ]]; then | |
echo "Month release already exists for year, incrementing patch number by 1" | |
next_patch="$((previous_patch + 1))" | |
else | |
echo "Month release does not exist for year, setting patch number to 0" | |
next_patch="0" | |
fi | |
# Create release | |
release_tag="${next_major_minor}.${next_patch}" | |
gh release create "${release_tag}" \ | |
--repo="${GITHUB_REPOSITORY}" \ | |
--title="${release_tag}" \ | |
--generate-notes | |
# yamllint enable rule:comments |