Compare commits

..

No commits in common. "7c6712d7a405ee45a5116907e0da5ab6e6e42232" and "d611f74cfbc61cc74bde9d606b84865cfb990526" have entirely different histories.

View file

@ -46,15 +46,6 @@ last_nightly_version=$(curl -s "https://api.github.com/repos/$repo/releases/late
exit 1 exit 1
} }
local_version="$(git --git-dir $BASEDIR/.git describe)"
if [ "$local_version" == "$last_nightly_version" ] ; then
echo "$title is already at version $last_nightly_version"
exit 1
fi
echo
echo "building $title version $local_version..."
echo
echo running tests... echo running tests...
./zig build test ./zig build test
@ -108,4 +99,4 @@ echo > "$release_notes"
git log "$(git describe --tags --abbrev=0)..HEAD" --pretty="format:%al %s" >> "$release_notes" git log "$(git describe --tags --abbrev=0)..HEAD" --pretty="format:%al %s" >> "$release_notes"
cat "$release_notes" cat "$release_notes"
gh release create "$VERSION" --repo "$repo" --notes-file "$release_notes" $DESTDIR/* gh release create (git --git-dir $BASEDIR/.git describe) --notes-file "$release_notes" $DESTDIR/*