Commit 9fb0a34 1 parent 9274d5f commit 9fb0a34 Copy full SHA for 9fb0a34
File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 20
20
- uses : actions/checkout@v4
21
21
- name : Get the release version from the tag
22
22
if : env.VERSION == ''
23
- run : echo "${{ github.ref_name }}" | sed -En 's/^roster- v(.*)$/VERSION=\1/p' >> $GITHUB_ENV
23
+ run : echo "${{ github.ref_name }}" | sed -En 's/^v(.*)$/VERSION=\1/p' >> $GITHUB_ENV
24
24
- name : Get the roster release version from the tag
25
25
if : env.RELEASE_NAME == ''
26
26
run : echo "RELEASE_NAME=${{ github.ref_name }}" >> $GITHUB_ENV
30
30
- name : Check that tag version and Cargo.toml version are the same
31
31
shell : bash
32
32
run : |
33
- if ! grep -q "version = \"$VERSION\"" cli/ Cargo.toml; then
33
+ if ! grep -q "version = \"$VERSION\"" Cargo.toml; then
34
34
echo "version does not match Cargo.toml" >&2
35
35
exit 1
36
36
fi
@@ -209,8 +209,8 @@ jobs:
209
209
run : |
210
210
mkdir -p "$ARCHIVE"/{complete,doc}
211
211
cp "$BIN" "$ARCHIVE"/
212
- cp cli/ README.md "$ARCHIVE"/
213
- cp cli/ CHANGELOG.md "$ARCHIVE"/doc/
212
+ cp README.md "$ARCHIVE"/
213
+ cp CHANGELOG.md "$ARCHIVE"/doc/
214
214
215
215
# - name: Generate man page and completions (no emulation)
216
216
# if: matrix.qemu == ''
You can’t perform that action at this time.
0 commit comments