Skip to content

Commit edd5939

Browse files
authored
0.2.17 (#59)
* pipeline: only zip files instead of the containing directory * 0.2.17 --------- Co-authored-by: Ľubomír Kurčák <[email protected]>
1 parent 981519f commit edd5939

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,9 @@ jobs:
118118
shell: bash
119119
if: matrix.os == 'windows-latest'
120120
run: |
121-
7z a "$ARCHIVE.zip" "$ARCHIVE"
121+
cd "$ARCHIVE"
122+
7z a "../$ARCHIVE.zip" *
123+
cd ..
122124
certutil -hashfile "$ARCHIVE.zip" SHA256 > "$ARCHIVE.zip.sha256"
123125
echo "ASSET=$ARCHIVE.zip" >> $GITHUB_ENV
124126
echo "ASSET_SUM=$ARCHIVE.zip.sha256" >> $GITHUB_ENV

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
authors = ["Ľubomír Kurčák <[email protected]>"]
33
name = "tend"
44
description = "Quickly spin up/down groups of command-line tasks with automated recovery"
5-
version = "0.2.16"
5+
version = "0.2.17"
66
edition = "2024"
77
license = "MIT OR Apache-2.0"
88
repository = "https://github.com/lubomirkurcak/tend"

0 commit comments

Comments
 (0)