Release qrcodegen static libraries #1
This file contains hidden or 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 qrcodegen static libraries | |
| on: | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| env: | |
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true | |
| jobs: | |
| prepare: | |
| runs-on: ubuntu-24.04 | |
| outputs: | |
| version: ${{ steps.version.outputs.version }} | |
| tag_name: ${{ steps.version.outputs.tag_name }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - id: version | |
| run: | | |
| version="$(awk '/^version:/{print $2; exit}' qrcodegen/manifest.yml)" | |
| test -n "${version}" | |
| echo "version=${version}" >> "$GITHUB_OUTPUT" | |
| echo "tag_name=$(.github/scripts/next-release-tag.sh qrcodegen "${version}")" >> "$GITHUB_OUTPUT" | |
| build: | |
| needs: prepare | |
| uses: ./.github/workflows/build-qrcodegen.yml | |
| release: | |
| needs: [prepare, build] | |
| runs-on: ubuntu-24.04 | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| VERSION: ${{ needs.prepare.outputs.version }} | |
| TAG_NAME: ${{ needs.prepare.outputs.tag_name }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/download-artifact@v7 | |
| with: | |
| path: release-assets | |
| merge-multiple: true | |
| - name: Create release tag | |
| run: | | |
| git config user.name "github-actions[bot]" | |
| git config user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
| git tag -a "${TAG_NAME}" -m "qrcodegen ${VERSION}" | |
| git push origin "refs/tags/${TAG_NAME}" | |
| - name: Publish GitHub Release | |
| run: gh release create "${TAG_NAME}" release-assets/* --verify-tag --title "qrcodegen ${VERSION} static libraries" --notes "Static qrcodegen ${VERSION} libraries for TotalCross." |