Test release action #21
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: 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 }} |