Skip to content

v0.1.0.1

v0.1.0.1 #2

Workflow file for this run

name: "Release Build"
on:
release:
types: [published]
jobs:
build:
runs-on: windows-2022
env:
ARCHIVE_NAME: Syringe-${{ github.ref_name }}.zip
steps:
- uses: actions/checkout@v4
- name: Build
uses: ./.github/actions/build
with:
build-config: Release
run-tests: 'true'
- name: Create an archive for the release
run: >
7z a ${{ env.ARCHIVE_NAME }}
./LICENSE
./Release/Syringe.exe
./Release/Syringe.pdb
- name: Upload files to the release
uses: softprops/action-gh-release@v2
with:
append_body: true
files: ${{ env.ARCHIVE_NAME }}