We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0bb925 commit 764124aCopy full SHA for 764124a
.github/workflows/release.yml
@@ -30,7 +30,7 @@ jobs:
30
- name: Check that tag version and Cargo.toml version are the same
31
shell: bash
32
run: |
33
- if ! grep -q "version = \"$(echo $VERSION | sed 's/v\(.*\)-.*/\1/')\"" Cargo.toml; then
+ if ! grep -q "version = \"$(echo $VERSION | sed 's/v\(.*\)-*.*/\1/')\"" Cargo.toml; then
34
echo "version does not match Cargo.toml" >&2
35
exit 1
36
fi
@@ -152,7 +152,7 @@ jobs:
152
153
mkdir -p "$ARCHIVE"
154
cp "$BIN" "$ARCHIVE"/
155
- cp {LICENSE,demo.gif,CHANGELOG.md} "$ARCHIVE"/
+ cp {LICENSE,CHANGELOG.md} "$ARCHIVE"/
156
157
- name: Build archive (Windows)
158
0 commit comments