Skip to content

Commit

Permalink
Use a git token for uploading assets
Browse files Browse the repository at this point in the history
  • Loading branch information
diversemix committed Aug 19, 2024
1 parent 09d1744 commit b45fc12
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ jobs:

- name: Upload Wheel Asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: dist/gcf_data_mapper-${{ env.VERSION }}-py3-none-any.whl
Expand All @@ -56,6 +58,8 @@ jobs:

- name: Upload Source Distribution Asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: dist/gcf_data_mapper-${{ env.VERSION }}.tar.gz
Expand Down

0 comments on commit b45fc12

Please sign in to comment.