Unverified Commit 06ee907b authored by Lucain's avatar Lucain Committed by GitHub
Browse files

Fix `PATH_IN_REPO` on new release in mirror_community_pipeline.yaml (#8519)

Fix PATH_IN_REPO in mirror workflow
parent 896fb6d8
......@@ -54,7 +54,7 @@ jobs:
else
# e.g. refs/tags/v0.28.1 -> v0.28.1
echo "CHECKOUT_REF=${{ github.ref }}" >> $GITHUB_ENV
echo "PATH_IN_REPO=${${{ github.ref }}#refs/tags/}" >> $GITHUB_ENV
echo "PATH_IN_REPO=$(echo ${{ github.ref }} | sed 's/^refs\/tags\///')" >> $GITHUB_ENV
fi
- name: Print env vars
run: |
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment