Skip to content

Commit

Permalink
Merge pull request #2851 from Multiverse/dumptruckman/fix_release_7
Browse files Browse the repository at this point in the history
Use new action for uploading artifact.
  • Loading branch information
dumptruckman authored Feb 20, 2023
2 parents a168e5c + 8a46d70 commit 7362e54
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,18 +36,10 @@ jobs:
GITHUB_VERSION: ${{ steps.get_release.outputs.tag_name }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Fix the upload URL
run: |
UPLOAD_URL=${{ steps.get_release.outputs.upload_url }}
UPLOAD_URL=${UPLOAD_URL//\{?name,label\}}
echo "UPLOAD_URL=${UPLOAD_URL}" >> $GITHUB_ENV
- name: Upload release artifact
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: shogo82148/actions-upload-release-asset@v1
with:
upload_url: ${{ env.UPLOAD_URL }}
upload_url: ${{ steps.get_release.outputs.upload_url }}
asset_path: build/libs/multiverse-core-${{ steps.get_release.outputs.tag_name }}.jar
asset_name: multiverse-core-${{ steps.get_release.outputs.tag_name }}.jar
asset_content_type: application/java-archive

0 comments on commit 7362e54

Please sign in to comment.