Skip to content

Commit

Permalink
fix : github token 변수 수정
Browse files Browse the repository at this point in the history
[create-release](https://github.com/actions/create-release) 레포지토리 문서에 의하면 해당 토큰은 github action에서 제공하는것으로 보임
  • Loading branch information
gogoadl committed Jun 26, 2023
1 parent 01acdf4 commit 2dba91e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,15 +70,15 @@ jobs:
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
- name: Upload Release APK
id: upload_release_asset
uses: actions/upload-release-asset@v1.0.1
env:
GITHUB_TOKEN: ${{ secrets.TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: apk/app-release.apk
Expand Down

0 comments on commit 2dba91e

Please sign in to comment.