Skip to content

Commit

Permalink
Merge pull request #1091 from ndw/fix-pr-action
Browse files Browse the repository at this point in the history
Fix the PR action
  • Loading branch information
ndw authored Apr 14, 2024
2 parents 956d958 + d9fd7f5 commit 8255177
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ jobs:
run: |
raw=${{ github.repository }}
reponame=${raw##*/}
echo "::set-output name=reponame::$reponame"
echo "reponame=$reponame" >> $GITHUB_STATE
raw=$(git branch -r --contains ${{ github.ref }})
branch=${raw##*/}
echo "::set-output name=branch::$branch"
echo "branch=$branch" >> $GITHUB_STATE
tag=""
echo "::set-output name=tag::$tag"
echo "tag=$tag" >> $GITHUB_STATE
build-and-deploy-pr:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 8255177

Please sign in to comment.