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 /.github/workflows/merge.yml | |
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 '.github/workflows/merge.yml')
-rw-r--r-- | .github/workflows/merge.yml | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/.github/workflows/merge.yml b/.github/workflows/merge.yml index 41f2ca4..43225bf 100644 --- a/.github/workflows/merge.yml +++ b/.github/workflows/merge.yml @@ -1,7 +1,6 @@ on: [push]
name: merge
jobs:
-
pre-build:
name: Pre-Build
runs-on: ubuntu-latest
@@ -33,7 +32,6 @@ jobs: uses: actions-rs/cargo@v1
with:
command: test
-
build:
name: Build
runs-on: ${{ matrix.os }}
@@ -53,4 +51,3 @@ jobs: uses: actions-rs/cargo@v1
with:
command: build
- args: --release
|