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 24084c5 commit 1cac20dCopy full SHA for 1cac20d
.github/workflows/build-docs.yaml
@@ -95,9 +95,9 @@ jobs:
95
shell: bash
96
run: |
97
if [[ ${{ github.ref_name }} == *"/merge" ]]; then
98
- echo "AVM_DOCS_NAME=${{github.event.pull_request.base.ref}}" >> "$GITHUB_ENV";
+ echo "AVM_DOCS_NAME=${{ github.event.pull_request.base.ref }}" | tr '/' '-' >> "$GITHUB_ENV";
99
else
100
- echo "AVM_DOCS_NAME=${{ github.ref_name }}" >> "$GITHUB_ENV";
+ echo "AVM_DOCS_NAME=${{ github.ref_name }}" | tr '/' '-' >> "$GITHUB_ENV";
101
fi
102
103
- uses: actions/checkout@v4
0 commit comments