We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03bff4e commit a336a83Copy full SHA for a336a83
.github/workflows/build.yaml
@@ -22,7 +22,7 @@ jobs:
22
run: echo "COMMIT_HASH=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
23
- name: Replace version hash
24
run: |
25
- sed -i "s/\(const VERSION: &str = \"\)[a-f0-9]\{7\}\"/\1$COMMIT_HASH\"/" src/shared/memory.rs"
+ sed -i "s/const VERSION: &str = \"[a-f0-9]\{7\}\"/const VERSION: \&str = \"$COMMIT_HASH\"/" src/shared/memory.rs
26
- name: Commit updated version
27
28
git config --global user.name "Wasp Bot"
@@ -124,4 +124,4 @@ jobs:
124
artifacts/i686-pc-windows-msvc-dll/${{ env.NAME_WIN32 }} \
125
artifacts/x86_64-pc-windows-msvc-dll/${{ env.NAME_WIN64 }} \
126
--title "${{ env.TAG_NAME }}" \
127
- --notes "Automated plugin release"
+ --notes "Automated plugin release"
0 commit comments