We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01df92d commit 69ed1e7Copy full SHA for 69ed1e7
1 file changed
.github/workflows/update-website.yml
@@ -99,7 +99,7 @@ jobs:
99
id: get_pr_info
100
env:
101
REF_NAME: ${{ github.ref_name }}
102
- TAG_NAME: ${{ github.event.release.tag_name }}
+ TAG_NAME: ${{ github.event.push.ref }}
103
run: |
104
if [ "${{ github.event_name }}" == "pull_request" ]; then
105
echo "REF=$REF_NAME" >> "$GITHUB_OUTPUT"
@@ -126,6 +126,7 @@ jobs:
126
path: artifacts
127
128
- name: Create the new branch
129
+ if: github.event_name == 'pull_request'
130
131
REF_NAME: feature/auto-ghpages-update-${{ steps.get_pr_info.outputs.REF }}
132
run: git checkout -b "$REF_NAME"
0 commit comments