Skip to content

Merge branch 'main' into dev #5

Merge branch 'main' into dev

Merge branch 'main' into dev #5

Workflow file for this run

name: Release Workflow
# Developers, to start making a release, tag a commit with vX.Y.Z and push it to main.
# Then this workflow will run and create a draft release with the tag name as the version.
# You can then edit the release to include a changelog and publish it.
on:
push:
tags: [ v* ]
jobs:
build_desktop:
uses: ./.github/workflows/desktop.yml
with:
version: ${{ github.ref_name }}
debug: false
release: true
secrets: inherit