summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorNick <nickagerace@gmail.com>2021-03-29 21:38:07 -0400
committerNick Gerace <nickagerace@gmail.com>2021-03-29 21:38:45 -0400
commit78f13f391fd6c5e4b6093f6dde9315e0d692d8e1 (patch)
treef28d73615ac864f7cc9ed6da8494688d0587286c /.github/workflows
parent4d98f4ddcbdf5995debc71703e221130a303cb0a (diff)
downloadgfold-78f13f391fd6c5e4b6093f6dde9315e0d692d8e1.zip
Add gfld
Add gfld. Consult CHANGELOG.md for more information.
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/merge.yml23
-rw-r--r--.github/workflows/release.yml2
2 files changed, 3 insertions, 22 deletions
diff --git a/.github/workflows/merge.yml b/.github/workflows/merge.yml
index 7c0bded..8af382a 100644
--- a/.github/workflows/merge.yml
+++ b/.github/workflows/merge.yml
@@ -1,8 +1,8 @@
on: [push]
name: merge
jobs:
- pre-build:
- name: Pre-Build
+ build:
+ name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout sources
@@ -14,10 +14,6 @@ jobs:
toolchain: stable
override: true
components: rustfmt, clippy
- - name: cargo check
- uses: actions-rs/cargo@v1
- with:
- command: check
- name: cargo fmt
uses: actions-rs/cargo@v1
with:
@@ -32,21 +28,6 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: test
- build:
- name: Build
- runs-on: ${{ matrix.os }}
- strategy:
- matrix:
- os: [ubuntu-latest,windows-latest,macos-latest]
- steps:
- - name: Checkout sources
- uses: actions/checkout@v2
- - name: Install stable toolchain
- uses: actions-rs/toolchain@v1
- with:
- profile: minimal
- toolchain: stable
- override: true
- name: Run cargo build
uses: actions-rs/cargo@v1
with:
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 2fc4bdb..6d9c586 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -26,6 +26,6 @@ jobs:
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
- file: target/release/${{ matrix.artifact_name }}
+ file: gfold/target/release/${{ matrix.artifact_name }}
asset_name: ${{ matrix.asset_name }}
tag: ${{ github.ref }}