Release #85
Workflow file for this run
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: | |
permissions: | |
contents: write | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
CARGO_TERM_COLOR: always | |
jobs: | |
# ci: | |
# uses: ./.github/workflows/ci.yml | |
commit-changes: | |
# needs: | |
# - ci | |
runs-on: ubuntu-latest | |
outputs: | |
version: ${{ steps.identify.outputs.version }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
# https://github.com/actions/checkout/issues/1471 | |
fetch-tags: true | |
fetch-depth: 0 | |
- uses: taiki-e/install-action@v2 | |
with: | |
tool: changelog-gen | |
- name: Set Github env | |
run: | | |
echo "version="$(date +"%-y.%-m.%-d")"" >> $GITHUB_ENV | |
echo "release_date="$(date +"%Y-%m-%d")"" >> $GITHUB_ENV | |
- id: identify | |
run: | | |
sed -i '/<release /s/version="[^"]*"/version="'"${{ env.version }}"'"/; /<release /s/date="[^"]*"/date="'"${{ env.release_date }}"'"/' "res/linux/metainfo.xml" | |
sed -i '/\[package.metadata.packager\]/,/^$/s/version = ".*"/version = "'"${{ env.version }}"'"/' "Cargo.toml" | |
echo ${{ env.version }} > VERSION | |
changelog-gen generate --exclude-unidentified | |
changelog-gen release --version ${{ env.version }} | |
echo "version=${{ env.version }}" >> $GITHUB_OUTPUT | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: "chore(changelog): automatic release generation (skip changelog) [skip ci]" | |
tagging_message: ${{ env.version }} | |
upload-artifacts: | |
needs: | |
- commit-changes | |
uses: ./.github/workflows/upload_artifacts.yml | |
with: | |
tag: ${{ needs.commit-changes.outputs.version }} | |
release-on-github: | |
needs: | |
- upload-artifacts | |
- commit-changes | |
runs-on: ubuntu-latest | |
steps: | |
# must be after checkout because it will remove artifacts | |
- uses: actions/download-artifact@v4 | |
- uses: taiki-e/install-action@v2 | |
with: | |
tool: changelog-gen | |
- name: Publish release | |
run: | | |
changelog-gen -- show > RELEASE_CHANGELOG.md | |
# https://cli.github.com/manual/gh_release_create | |
gh release create ${{ needs.commit-changes.outputs.version }} --title ${{ needs.commit-changes.outputs.version }} \ | |
--notes-file RELEASE_CHANGELOG.md --target $GITHUB_SHA \ | |
./fan-control*/* |