Skip to content

Release on tag v5.9.0-b7 #8

Release on tag v5.9.0-b7

Release on tag v5.9.0-b7 #8

Workflow file for this run

on:
push:
tags:
- 'v*'
name: Release on tag
run-name: Release on tag ${{ github.ref_name }}
jobs:
build:
name: Build and upload ${{ github.ref_name }}
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Get annotation
id: tag-data
run: |
{
echo 'annotation <<EOF'
git for-each-ref "${GITHUB_REF}" --format '%(contents)'
echo 'EOF'
} >> "${GITHUB_OUTPUT}"
- name: Build release
run: ./build_release.sh "${{ github.ref_name }}"
- name: Publish release
uses: softprops/action-gh-release@v2
with:
make_latest: true
body: ${{ steps.tag-data.outputs.annotation }}
files: dist/*