Skip to content

Commit

Permalink
Update release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
sevensolutions committed Oct 4, 2024
1 parent a33b9d5 commit 2ec664b
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

0 comments on commit 2ec664b

Please sign in to comment.