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