We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2ad6ef commit 2989d7bCopy full SHA for 2989d7b
.github/workflows/release.yml
@@ -47,12 +47,12 @@ jobs:
47
- name: Update version
48
run: |
49
VERSION="${{ steps.version.outputs.version }}"
50
- if [ -f "scripts/update-version.sh" ]; then
51
- chmod +x scripts/update-version.sh
52
- ./scripts/update-version.sh "$VERSION" --no-confirm --force
53
- elif [ -f "scripts/update-version-simple.sh" ]; then
+ if [ -f "scripts/update-version-simple.sh" ]; then
54
chmod +x scripts/update-version-simple.sh
55
./scripts/update-version-simple.sh "$VERSION" --no-confirm --force
+ elif [ -f "scripts/update-version.sh" ]; then
+ chmod +x scripts/update-version.sh
+ ./scripts/update-version.sh "$VERSION" --no-confirm --force
56
fi
57
58
- name: Code quality
0 commit comments