Skip to content
This repository has been archived by the owner on Nov 5, 2024. It is now read-only.

Commit

Permalink
Fix the internal_release.yml automation
Browse files Browse the repository at this point in the history
  • Loading branch information
ILIYANGERMANOV committed Jul 6, 2024
1 parent 671fb51 commit e04c1b9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/internal_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
internal_release:
runs-on: ubuntu-latest
outputs:
upload_url: ${{ steps.create_release.outputs.upload_url }}
github_release_url: ${{ steps.create_release.outputs.github_release_url }}

steps:
- name: Checkout GIT
Expand Down Expand Up @@ -120,6 +120,7 @@ jobs:
${{ steps.Changelog.outputs.changelog }}
draft: false
prerelease: false
run: echo "github_release_url=${{ steps.create_release.outputs.upload_url }}" >> $GITHUB_ENV

build_demo_apk_and_announce:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -160,7 +161,7 @@ jobs:
- name: Upload Demo APK to GitHub Release
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ needs.internal_release.outputs.upload_url }}
upload_url: ${{ needs.internal_release.outputs.github_release_url }}
asset_path: app/build/outputs/apk/demo/app-demo.apk
asset_name: Ivy-Wallet-Demo.apk
asset_content_type: application/vnd.android.package-archive
Expand Down

0 comments on commit e04c1b9

Please sign in to comment.