diff options
author | Nick Gerace <nickagerace@gmail.com> | 2020-10-07 02:31:33 -0400 |
---|---|---|
committer | Nick Gerace <nickagerace@gmail.com> | 2020-10-07 02:36:32 -0400 |
commit | 5ebcb8bac0a7662ccfc50b8798ae64f000abc053 (patch) | |
tree | 7e146387efcbc5bc515b9eeb17bff966b1a85114 /Makefile | |
parent | 16c3d7b246ce09a4b3d7d730102c155f4a51f47c (diff) | |
download | gfold-5ebcb8bac0a7662ccfc50b8798ae64f000abc053.zip |
Add binary publishing workflow
Add binary publishing workflow to existing dummy release workflow.
Remove default branch reference from Makefile. Remove statically-linked
build target from Makefile. Switch to build debug instead of build
release for the merge workflow.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -23,11 +23,6 @@ install-local: build: fmt test cd $(MAKEPATH); cargo build -build-static: fmt test - @printf "Warning: gfold has deprecated this workflow.\n" - docker pull clux/muslrust - cd $(MAKEPATH); docker run -v $(MAKEPATH):/volume --rm -t clux/muslrust cargo build --release - build-release: fmt test cd $(MAKEPATH); cargo build --release @@ -42,7 +37,7 @@ tree: tag: cd $(MAKEPATH); git tag $(VERSION) - cd $(MAKEPATH); git push --tags origin master + cd $(MAKEPATH); git push --tags origin main fixme: @cd $(MAKEPATH); grep -r \ |