Skip to content

Release

Release #10

Workflow file for this run

name: Release
on:
workflow_run:
workflows: ["CI"]
types:
- completed
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+*'
jobs:
release:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: build-output
path: dist
- name: Create release
uses: softprops/action-gh-release@v2
with:
files: dist/${{ github.event.repository.name }}-${{ github.ref_name }}.zip
generate_release_notes: true