From 7756f75bb9dd090c46639a74dcaf6d1f2c5694b6 Mon Sep 17 00:00:00 2001 From: kramo <93832451+kra-mo@users.noreply.github.com> Date: Sat, 1 Jul 2023 20:18:26 +0200 Subject: [PATCH] Test Release Action --- .github/workflows/publish-release.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/publish-release.yml diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml new file mode 100644 index 0000000..d8996d8 --- /dev/null +++ b/.github/workflows/publish-release.yml @@ -0,0 +1,23 @@ +on: + push: + branches: [main] +# tags: +# - 'v(\d|\.)*' +name: "Publish Release" +jobs: + publish-release: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Download workflow artifact + uses: dawidd6/action-download-artifact@v2.27.0 + with: + workflow: windows.yml + workflow_conclusion: success + + - name: "Publish Release" + uses: softprops/action-gh-release@v0.1.15 + with: + files: "Cartridges Setup.exe" \ No newline at end of file