Test release

This commit is contained in:
Chris Miles 2023-11-05 20:54:55 -06:00
parent e214431194
commit a2af40e3d8
4 changed files with 15 additions and 5 deletions

View file

@ -5,7 +5,6 @@ name: default
concurrency:
limit: 1
steps:
- name: build-release
image: akkadius/wails:v2.0.3
@ -15,7 +14,7 @@ steps:
commands:
- sudo chown -R go /drone/src
- sudo chown -R go /home/go/pkg
- make build
- make ci-build
when:
branch: [ "main" ]
event: [ push ]

3
CHANGELOG.md Normal file
View file

@ -0,0 +1,3 @@
## [1.0.0] 11/5/2023
Initial release test

View file

@ -56,14 +56,14 @@ help: ##@other Show this help.
@perl -e '$(HELP_FUN)' $(MAKEFILE_LIST)
#----------------------
# build
# ci-build
#----------------------
build: ##@build Builds binary for windows
ci-build: ##@ci-build Builds and releases
wails build -platform=windows/amd64
@echo "Zipping binary"
zip -r -j ./eq-expansion-switcher-windows-amd64.zip ./build/bin/eq-expansion-switcher.exe
gh-release --assets=eq-expansion-switcher-windows-amd64.zip -y
#----------------------
# image build

8
package.json Normal file
View file

@ -0,0 +1,8 @@
{
"name": "eq-expansion-switcher",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/Akkadius/eq-expansion-switcher"
}
}