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 b1b1981 commit 515cbebCopy full SHA for 515cbeb
.github/workflows/generate-schema.yml
@@ -25,12 +25,12 @@ jobs:
25
- name: Check Branch with Regex
26
id: check-tag
27
run: |
28
- if [ "${{ github.ref }}" =~ ^refs/heads/brapi-V[0-9]+\.[0-9]+$ ]; then
+ if [[ "${{ github.ref }}" =~ ^refs/heads/brapi-V[0-9]+\.[0-9]+$ ]]; then
29
echo "commit=true" >> $GITHUB_ENV
30
else
31
echo "commit=false" >> $GITHUB_ENV
32
fi
33
- if [[env.commit == 'true']]; then
+ if [[ ${{ env.commit }} == 'true']]; then
34
echo "Release branch - will commit generated files"
35
36
echo "Feature branch - will NOT commit generated files"
0 commit comments