From 4d4667bfd6a62a5445b975ea6a6454227cf46570 Mon Sep 17 00:00:00 2001 From: seerge Date: Mon, 13 Feb 2023 16:33:13 +0100 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 132a8a2e..9f3fb5cc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,9 +23,18 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v3 - - - uses: actions/upload-artifact@v3 + - name: Checkout + uses: actions/checkout@v3 + + - name: Build-artifact + uses: actions/upload-artifact@v3 with: name: g14-helper path: ./g14-helper.exe + + - name: Release + uses: softprops/action-gh-release@v1 + with: + files: g14-helper.zip + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}