From 2ec664bf2ed239af91954fef799f5b32893f52b4 Mon Sep 17 00:00:00 2001 From: sevensolutions <84123899+sevensolutions@users.noreply.github.com> Date: Fri, 4 Oct 2024 19:46:06 +0200 Subject: [PATCH] Update release workflow --- .github/workflows/release.yml | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1b6a386..58a26b5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,13 +17,13 @@ jobs: with: name: nomad_iis path: nomad_iis - github-token: ${{ secrets.GITHUB_TOKEN }} + github-token: ${{ github.token }} run-id: ${{ github.event.inputs.runId }} - uses: actions/download-artifact@master with: name: nomad_iis_mgmt_api path: nomad_iis_mgmt_api - github-token: ${{ secrets.GITHUB_TOKEN }} + github-token: ${{ github.token }} run-id: ${{ github.event.inputs.runId }} # Zip the artifacts @@ -35,3 +35,14 @@ jobs: with: files: ./nomad_iis_mgmt_api dest: nomad_iis_mgmt_api.zip + + # Create the Release + - - name: create release + uses: softprops/action-gh-release@v2 + with: + name: vTODO + tag_name: vTODO + draft: true + files: + - nomad_iis.zip + - nomad_iis_mgmt_api.zip