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 10c9cba commit abef81cCopy full SHA for abef81c
.github/workflows/build.yml
@@ -17,9 +17,8 @@ jobs:
17
- name: Inject Base Url
18
run: |
19
BRANCH=$(echo ${GITHUB_REF} | sed -e 's/refs\/heads\///')
20
- BRANCH_NAME=$(echo $BRANCH | sed 's|origin/||')
21
- if [[ $BRANCH_NAME == build/ver/* ]]; then
22
- VER=$(echo $BRANCH_NAME | sed 's|build/ver/||')
+ if [[ $BRANCH == ver/* ]]; then
+ VER=$(echo $BRANCH | sed 's|build/ver/||')
23
echo ${VER} > VER
24
fi
25
0 commit comments