We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8405755 commit e42a490Copy full SHA for e42a490
1 file changed
.github/workflows/upload_dev.yml
@@ -18,6 +18,13 @@ jobs:
18
with:
19
persist-credentials: false
20
21
+ # Create version.json with version and commit hash
22
+ - name: Create version.json
23
+ run: |
24
+ VERSION=$(cat version_latest.txt | tr -d '[:space:]')
25
+ SHORT_SHA="${GITHUB_SHA::7}"
26
+ echo "{\"version\": \"${VERSION}\", \"commit\": \"${SHORT_SHA}\"}" > version.json
27
+
28
# Create ZIP File in a New Source Directory
29
- name: Prepare and Zip Release Files
30
run: |
0 commit comments