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 a1aaa08 commit a473585Copy full SHA for a473585
.github/workflows/release.yml
@@ -53,6 +53,15 @@ jobs:
53
- name: Checkout Code
54
uses: actions/checkout@v5
55
56
+ - name: Set script permissions
57
+ run: chmod +x ./scripts/inject-version.sh
58
+
59
+ - name: Inject version
60
+ run: |
61
+ VERSION="${{ github.ref_name }}"
62
+ VERSION="${VERSION#*-}" # removes everything up to the first dash
63
+ ./scripts/inject-version.sh "$VERSION"
64
65
- name: Archive definitions folder
66
run: |
67
zip -r definitions.zip definitions
0 commit comments