From deab622c3ea764b7a13679396920118bec671b60 Mon Sep 17 00:00:00 2001 From: Michael Keller Date: Wed, 10 Jan 2024 06:48:57 +1300 Subject: [PATCH] CICD: Fix the android Action. Fix the android action. Signed-off-by: Michael Keller --- .github/workflows/android.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index a9bd020ca..cfe034f3d 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -35,11 +35,11 @@ jobs: run: | version=$(bash scripts/get-atomic-buildnr.sh ${{ github.sha }} ${{ secrets.NIGHTLY_BUILDS }} "CICD-release") echo "version=$version" >> $GITHUB_OUTPUT - pr_num = ${{ steps.get_pr.outputs.number }} - pr_url = ${{ steps.get_pr.outputs.html_url }} - pr_title = ${{ steps.get_pr.outputs.title }} - commit_id = ${{ github.event.head_commit.id }} - commit_url = ${{ github.event.head_commit.url }} + pr_num=${{ steps.get_pr.outputs.number }} + pr_url=${{ steps.get_pr.outputs.html_url }} + pr_title=${{ steps.get_pr.outputs.title }} + commit_id=${{ github.event.head_commit.id }} + commit_url=${{ github.event.head_commit.url }} bash scripts/create-releasenotes.sh "$pr_num" "$pr_url" "$pr_title" "$commit_id" "$commit_url" - name: store dummy version and build number for non-push build runs