From 5c1d0da45195c8f3f73f1349f3e6fcc7652d276e Mon Sep 17 00:00:00 2001 From: DxLib Update Bot Date: Sun, 14 May 2023 17:12:16 +0900 Subject: [PATCH] fix ci --- .github/workflows/build.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2c9fe4f..7e6b23d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -41,12 +41,16 @@ jobs: if: ${{ contains(github.ref, 'tags/') }} id: create-release uses: actions/create-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - tag_name: ${{ github.ref }} + tag_name: ${{ github.ref }} - name: Upload Release Asset (zip) if: ${{ contains(github.ref, 'tags/') }} uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ steps.create-release.outputs.upload_url }} asset_path: DxLibForHTML5.zip @@ -55,6 +59,8 @@ jobs: - name: Upload Release Asset (zip) if: ${{ contains(github.ref, 'tags/') }} uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ steps.create-release.outputs.upload_url }} asset_path: DxLibForHTML5.tgz