Skip to content

Commit

Permalink
ID conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabian Wolf committed Feb 22, 2023
1 parent c6e5447 commit b80d5aa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Create Release Page
name: Create Release
on:
push:
# Sequence of patterns matched against refs/tags
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
draft: false
prerelease: false
- name: Upload Release Asset (ZIP)
id: upload-release-asset
id: upload-release-asset-zip
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.DEPLOYMENT_TOKEN }}
Expand All @@ -81,10 +81,10 @@ jobs:
asset_name: ILIAS-${VERSION}.zip
asset_content_type: application/zip
- name: Upload Release Asset (TAR)
id: upload-release-asset
id: upload-release-asset-tar
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.DEPLOYMENT_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: ./release.tar.gz
Expand Down

0 comments on commit b80d5aa

Please sign in to comment.