Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d109c71c15 | ||
|
|
1628a45f7d | ||
|
|
cebdcfe220 | ||
|
|
cb05a1e5e6 |
Generated
+1
-1
@@ -1709,7 +1709,7 @@ checksum = "e2db585e1d738fc771bf08a151420d3ed193d9d895a36df7f6f8a9456b911ddc"
|
||||
|
||||
[[package]]
|
||||
name = "lemur"
|
||||
version = "0.2.3"
|
||||
version = "0.2.5"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"bitflags 2.6.0",
|
||||
|
||||
+1
-1
@@ -4,7 +4,7 @@ description = "An emulator for the Virtual Boy."
|
||||
repository = "https://git.virtual-boy.com/PVB/lemur"
|
||||
publish = false
|
||||
license = "MIT"
|
||||
version = "0.2.3"
|
||||
version = "0.2.5"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
|
||||
+9
-2
@@ -1,3 +1,4 @@
|
||||
set -e
|
||||
version=$(cat Cargo.toml | sed -n -e '/version/ {s/.* = *//p;q}' | tr -d '"')
|
||||
|
||||
read -p "You wanted to release $version, right? [Y/n] " -n 1 -r
|
||||
@@ -18,11 +19,15 @@ if ! command -v jq 2>&1 >/dev/null; then
|
||||
echo "Please install jq."
|
||||
exit 1
|
||||
fi
|
||||
if ! command -v docker 2>&1 >/dev/null; then
|
||||
echo "Please install docker."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
docker build -f build.Dockerfile -t lemur-build .
|
||||
MSYS_NO_PATHCONV=1 docker run -it --rm -v .:/app -w /app --entrypoint bash lemur-build /app/scripts/do-bundle.sh
|
||||
|
||||
read -r -d EOF 'body' <<EOF
|
||||
(read -r -d EOF 'body' <<EOF
|
||||
## How to install
|
||||
|
||||
The emulator can be found in the "Downloads" section of this release.
|
||||
@@ -43,8 +48,9 @@ If you're not sure which to choose, use [this guide](https://support.apple.com/e
|
||||
|
||||
You can either download and run \`lemur-linux\`, or download and install the attached .deb file.
|
||||
EOF
|
||||
) || true
|
||||
|
||||
read -r -d EOF 'payload' <<EOF
|
||||
(read -r -d EOF 'payload' <<EOF
|
||||
{
|
||||
"body": $(echo "$body" | jq -Rsa .),
|
||||
"draft": false,
|
||||
@@ -53,6 +59,7 @@ read -r -d EOF 'payload' <<EOF
|
||||
"tag_name": "v${version}"
|
||||
}
|
||||
EOF
|
||||
) || true
|
||||
|
||||
echo "Creating release..."
|
||||
response=$(curl -s --json "$payload" "https://git.virtual-boy.com/api/v1/repos/PVB/lemur/releases?token=$RELEASE_TOKEN")
|
||||
|
||||
Reference in New Issue
Block a user