Skip to content

Commit

Permalink
Fix release for new license files
Browse files Browse the repository at this point in the history
The release script was trying to copy LICENSE, which no longer exists. Instead copy the new LICENSE-APACHE and LICENSE-MIT
  • Loading branch information
adzenith authored and arxanas committed Sep 12, 2023
1 parent 89b16b3 commit d4d6382
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
outdir="./target/${{ matrix.target }}/release"
staging="git-branchless-${{ github.event.release.tag_name }}-${{ matrix.target }}"
mkdir -p "$staging"
cp {README.md,LICENSE} "$staging/"
cp README.md LICENSE-{APACHE,MIT} "$staging/"
if [ "${{ matrix.os }}" = "windows-2022" ]; then
cp "target/${{ matrix.target }}/release/git-branchless.exe" "$staging/"
cd "$staging"
Expand Down

0 comments on commit d4d6382

Please sign in to comment.