From e7901af6c42e2a4885d865ca840bd74d5bf940c7 Mon Sep 17 00:00:00 2001 From: maknee Date: Mon, 24 Jul 2023 02:00:20 -0400 Subject: [PATCH] Change workflow release --- .github/workflows/run.yml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/workflows/run.yml b/.github/workflows/run.yml index 9518534..a723dfb 100644 --- a/.github/workflows/run.yml +++ b/.github/workflows/run.yml @@ -291,13 +291,20 @@ jobs: id: download-artifact uses: actions/download-artifact@v3 + - name: Display structure of downloaded files + run: ls -R + - name: Get commit hash id: commit uses: pr-mpt/actions-commit-hash@v2 - name: Create release id: create_release - uses: ncipollo/release-action@v1 + uses: "marvinpinto/action-automatic-releases@latest" with: - artifacts: "./artifact/*.zip" - prerelease: true \ No newline at end of file + repo_token: "${{ secrets.GITHUB_TOKEN }}" + automatic_release_tag: "latest" + prerelease: true + title: "Development Build" + files: | + artifact/*.zip