Compare commits

...

2 Commits

Author SHA1 Message Date
c6ca2455e4 build: add version to pack.mcmeta
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/tag/woodpecker Pipeline was successful
2023-02-18 14:07:17 +01:00
f9888588d6 ci: build releases in woodpecker 2023-02-18 13:30:54 +01:00
5 changed files with 34 additions and 5 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
*.DS_Store
*.zip
*.sha1
*.swp

17
.woodpecker.yml Normal file
View File

@ -0,0 +1,17 @@
pipeline:
build:
image: alpine:3.13
commands:
- apk add zip make
- make
publish:
image: plugins/gitea-release
settings:
api_key:
from_secret: GITEA_KEY
base_url: https://gitea.malloc.hackerbots.net/
files:
- ./*.zip
- ./*.sha1
when:
event: tag

View File

@ -1,9 +1,14 @@
.PHONY: all
all: malloc-data-1.0.zip malloc-data-1.0.zip.sha1
BUILD_VERSION:=$(shell git describe --tags)
malloc-data-1.0.zip: pack.mcmeta
zip -r malloc-data-1.0.zip pack.mcmeta data
all: malloc-data-$(BUILD_VERSION).zip malloc-data-$(BUILD_VERSION).zip.sha1
malloc-data-1.0.zip.sha1: malloc-data-1.0.zip
pack.mcmeta: pack.mcmeta.in
sed -e 's/@VERSION@/$(BUILD_VERSION)/g' $< > $@
malloc-data-$(BUILD_VERSION).zip: pack.mcmeta
zip -r $@ pack.mcmeta data
malloc-data-$(BUILD_VERSION).zip.sha1: malloc-data-$(BUILD_VERSION).zip
sha1sum $< > $@

View File

@ -1,6 +1,6 @@
{
"pack": {
"pack_format": 10,
"description": "Malloc Minecraft Item Functions (1.0.0)"
"description": "Malloc Minecraft Item Functions (v1.0.0-1-gf988858)"
}
}

6
pack.mcmeta.in Normal file
View File

@ -0,0 +1,6 @@
{
"pack": {
"pack_format": 10,
"description": "Malloc Minecraft Item Functions (@VERSION@)"
}
}