Skip to content

Test release action #21

Test release action

Test release action #21

name: Create Release with Pre-Built Installers
on:
push:
tags:
- 'v*' # Trigger on tags that start with "v" (e.g., v1.0.0)
jobs:
create-release:
runs-on: ubuntu-latest
steps:
- name: Download Ubuntu Artifact
uses: actions/download-artifact@v2
with:
name: qc-framework-executables-ubuntu
- name: Download Windows Artifact
uses: actions/download-artifact@v2
with:
name: qc-framework-executables-windows
- name: Create GitHub Release
uses: softprops/action-gh-release@v1
with:
files: |
qc-framework-executables-ubuntu
qc-framework-executables-windows
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}