From 4aadea8985012f057ecdd1864360a77e799cfb88 Mon Sep 17 00:00:00 2001 From: milerius Date: Thu, 15 Jul 2021 17:17:41 +0200 Subject: [PATCH] feat(ci): continue mobile release --- .github/workflows/create_release.yml | 5 ++++- .github/workflows/mobile_release.yml | 14 +++++++++++++- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/.github/workflows/create_release.yml b/.github/workflows/create_release.yml index 403a3440..751a436c 100644 --- a/.github/workflows/create_release.yml +++ b/.github/workflows/create_release.yml @@ -27,4 +27,7 @@ jobs: body: | Automatic Release draft: false - prerelease: false \ No newline at end of file + prerelease: false + + - name: "Post Release creation" + run: echo ${{ steps.create_release.outputs.upload_url }} \ No newline at end of file diff --git a/.github/workflows/mobile_release.yml b/.github/workflows/mobile_release.yml index d8791ff7..83736415 100644 --- a/.github/workflows/mobile_release.yml +++ b/.github/workflows/mobile_release.yml @@ -37,4 +37,16 @@ jobs: - name: build for android if: matrix.goos == 'android' run: | - echo "build for android" \ No newline at end of file + 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 \ No newline at end of file