diff --git a/.github/workflows/check-git-apply.yaml b/.github/workflows/check-git-apply.yaml index ae9dc4de..8031ad16 100644 --- a/.github/workflows/check-git-apply.yaml +++ b/.github/workflows/check-git-apply.yaml @@ -33,8 +33,8 @@ jobs: - name: "Get value from dispatch" run: | - if [ "${RTAG}" ]; then - echo "GITHUB_SHA=$RTAG" >> $GITHUB_ENV + if [ -z "${RTAG}" ]; then + echo "RTAG=$GITHUB_SHA" >> $GITHUB_ENV echo "RTAG=$RTAG" fi @@ -53,7 +53,7 @@ jobs: unzip pup_v0.4.0_linux_amd64.zip rm pup_v0.4.0_linux_amd64.zip - BRANCH=$(curl https://github.com/uazo/bromite/branch_commits/$GITHUB_SHA | ./pup -p li.branch:last-child a text{}) + BRANCH=$(curl https://github.com/uazo/bromite/branch_commits/$RTAG | ./pup -p li.branch:last-child a text{}) echo "BRANCH=$BRANCH" >> $GITHUB_ENV - name: Checkout 'uazo/bromite' ${{ env.BRANCH }} @@ -71,7 +71,7 @@ jobs: - name: Download chromium ${{ env.VERSION }} sources run: | - ./bin/SuperPatchUtils bromite $GITHUB_SHA chromium/src + ./bin/SuperPatchUtils bromite $RTAG chromium/src cd chromium/src git init git config user.email "you@example.com"