From 878db9137d20f40b37b2549da566195ce1b46120 Mon Sep 17 00:00:00 2001 From: "B. Blechschmidt" Date: Sun, 15 Oct 2023 00:30:05 +0200 Subject: [PATCH] Fix runner --- .github/workflows/publish-exe.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish-exe.yml b/.github/workflows/publish-exe.yml index f9d90d1..8bedea9 100644 --- a/.github/workflows/publish-exe.yml +++ b/.github/workflows/publish-exe.yml @@ -1,7 +1,7 @@ on: push: tags: - - "*" + - "v*.*.*" workflow_dispatch: name: Build and publish executable @@ -20,7 +20,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: name: Automated build of ${{ github.ref }} - files: bin/* - draft: false + files: dist/bin/* + draft: true prerelease: true body: This is an automated build of commit ${{ github.ref }}. \ No newline at end of file