From fa815f17c017a5dbc5ba023863aeda9379069a04 Mon Sep 17 00:00:00 2001 From: Maschell Date: Fri, 6 Jan 2023 13:50:06 +0100 Subject: [PATCH] Update the CI to use a non-deprecated release action --- .github/workflows/ci.yml | 25 ++++++------------------- 1 file changed, 6 insertions(+), 19 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6252dcd..d9d2b49 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,25 +49,12 @@ jobs: - name: zip artifact run: zip -r ${{ env.REPOSITORY_NAME }}_${{ env.DATETIME }}.zip *.wms - name: Create Release - id: create_release - uses: actions/create-release@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + uses: "softprops/action-gh-release@v1" with: tag_name: ${{ env.REPOSITORY_NAME }}-${{ env.DATETIME }} - release_name: Nightly-${{ env.REPOSITORY_NAME }}-${{ env.DATETIME }} - draft: false + draft: falsee prerelease: true - body: | - Not a stable release: - ${{ env.COMMIT_MESSAGES }} - - name: Upload Release Asset - id: upload-release-asset - uses: actions/upload-release-asset@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps - asset_path: ./${{ env.REPOSITORY_NAME }}_${{ env.DATETIME }}.zip - asset_name: ${{ env.REPOSITORY_NAME }}_${{ env.DATETIME }}.zip - asset_content_type: application/zip \ No newline at end of file + generate_release_notes: true + name: Nightly-${{ env.REPOSITORY_NAME }}-${{ env.DATETIME }} + files: | + ./${{ env.REPOSITORY_NAME }}_${{ env.DATETIME }}.zip \ No newline at end of file