Skip to content

Update workflows

Update workflows #11

Workflow file for this run

name: Deploy
on:
push:
tags:
- 'v*'
jobs:
deploy:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/workflows/build-action.yml
- name: Create GitHub release
uses: ncipollo/release-action@v1
with:
artifacts: "publish/*.exe,publish/*.msi"
allowUpdates: true
artifactErrorsFailBuild: true
prerelease: contains(github.ref, 'beta')