Skip to content

Commit

Permalink
Merge branch 'master' into groups-in-repo-justfile
Browse files Browse the repository at this point in the history
  • Loading branch information
neunenak committed Sep 10, 2024
2 parents c8200c0 + beef0e1 commit 5e07c19
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
3 changes: 2 additions & 1 deletion bin/forbid
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ which rg
--glob !bin/forbid \
--glob !CHANGELOG.md \
--ignore-case \
'dbg!|fixme|todo|xxx'
'dbg!|fixme|todo|xxx' \
.
8 changes: 4 additions & 4 deletions bin/package
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,15 @@ cd $DIST
echo "Creating release archive..."
case $OS in
ubuntu-latest | macos-latest)
ARCHIVE=$DIST/just-$VERSION-$TARGET.tar.gz
ARCHIVE=just-$VERSION-$TARGET.tar.gz
tar czf $ARCHIVE *
echo "archive=$ARCHIVE" >> $GITHUB_OUTPUT
shasum -a 256 $ARCHIVE > $ARCHIVE.sha256sum
echo "archive=$DIST/$ARCHIVE" >> $GITHUB_OUTPUT
;;
windows-latest)
ARCHIVE=$DIST/just-$VERSION-$TARGET.zip
ARCHIVE=just-$VERSION-$TARGET.zip
7z a $ARCHIVE *
echo "archive=`pwd -W`/just-$VERSION-$TARGET.zip" >> $GITHUB_OUTPUT
sha256sum $ARCHIVE > $ARCHIVE.sha256sum
echo "archive=`pwd -W`/$ARCHIVE" >> $GITHUB_OUTPUT
;;
esac
6 changes: 6 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,12 @@ test-bash-completions:
echo 'bar:' > tmp/foo.just
cd tmp && PATH="`realpath bin`:$PATH" bash --init-file just.bash

test-release-workflow:
-git tag -d test-release
-git push origin :test-release
git tag test-release
git push origin test-release

# Local Variables:
# mode: makefile
# End:
Expand Down

0 comments on commit 5e07c19

Please sign in to comment.