Skip to content

Commit 4b926d1

Browse files
authored
ci(release): fix the tarball staging path for LICENSE.txt (#128)
The release workflow copied `LICENSE`, but the file is `LICENSE.txt`, so `make release` for v0.12.0 died at the staging step and published nothing. Adds UPGRADING.md to the tarball while we're here. Co-authored-by: django23 <827397+django23@users.noreply.github.com>
1 parent 18687bf commit 4b926d1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
# asimov-<version>/{bin,lib,data} and installs with scripts/install.sh.
4343
STAGE="asimov-${FULL_VERSION}"
4444
mkdir -p "$STAGE"
45-
cp -a bin lib data scripts LICENSE README.md CHANGELOG.md \
45+
cp -a bin lib data scripts LICENSE.txt README.md CHANGELOG.md UPGRADING.md \
4646
com.stevegrunwell.asimov.plist "$STAGE/"
4747
TARBALL="${STAGE}.tar.gz"
4848
tar -czf "$TARBALL" "$STAGE"

0 commit comments

Comments
 (0)