Skip to content

Commit

Permalink
asset用のstepを利用
Browse files Browse the repository at this point in the history
  • Loading branch information
tarappo committed Nov 1, 2022
1 parent bdb6ec8 commit 6bcaea8
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,19 @@ jobs:
cd build/Build/Products/Debug-iphonesimulator/
zip -r ci-sample.zip ci-sample.app/
- name: Release note
id: release_note
uses: release-drafter/release-drafter@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ios/build/Build/Products/Debug-iphonesimulator/ci-sample.zip
publish: true
- name: Upload Release Asset
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.release_note.outputs.upload_url }}
asset_path: ios/build/Build/Products/Debug-iphonesimulator/ci-sample.zip
asset_name: ci-sample.zip
asset_content_type: application/zip

0 comments on commit 6bcaea8

Please sign in to comment.