Skip to content

Commit

Permalink
feat(ci): continue mobile release
Browse files Browse the repository at this point in the history
  • Loading branch information
Milerius committed Jul 15, 2021
1 parent cf379c1 commit 4aadea8
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/create_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,7 @@ jobs:
body: |
Automatic Release
draft: false
prerelease: false
prerelease: false

- name: "Post Release creation"
run: echo ${{ steps.create_release.outputs.upload_url }}
14 changes: 13 additions & 1 deletion .github/workflows/mobile_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,16 @@ jobs:
- name: build for android
if: matrix.goos == 'android'
run: |
echo "build for android"
echo "build for android"
# - name: Upload Release Asset (ios)
# if: matrix.goos == 'ios'
# id: upload-release-asset
# uses: actions/upload-release-asset@v1
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
# asset_path: ./my-artifact.zip
# asset_name: my-artifact.zip
# asset_content_type: application/zip

0 comments on commit 4aadea8

Please sign in to comment.