summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorJustin Cichra <1342149+jrcichra@users.noreply.github.com>2020-04-10 16:59:51 -0400
committerGitHub <noreply@github.com>2020-04-10 16:59:51 -0400
commitd5874f7f5b64bca9ef690db56e08632323597fb6 (patch)
treee62269227b0dfea2fffe058a252f3995aded9dab /.github/workflows
parent3386f729f6f83c294c623d3bab6ecd7225b7dcb7 (diff)
downloadgfold-d5874f7f5b64bca9ef690db56e08632323597fb6.zip
No more releases
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/rust.yml21
1 files changed, 0 insertions, 21 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
index fabfb2d..2535af2 100644
--- a/.github/workflows/rust.yml
+++ b/.github/workflows/rust.yml
@@ -66,24 +66,3 @@ jobs:
with:
command: build
args: --release
- - name: Rename (Linux)
- if: runner.os == 'Linux'
- run: |
- cp target/release/gfold ./gfold-linux-amd64
- - name: Rename (MacOS)
- if: runner.os == 'MacOS'
- run: |
- cp target/release/gfold ./gfold-macos-amd64
- - name: Rename (Windows)
- if: runner.os == 'Windows'
- run: |
- Copy-Item target\release\gfold.exe gfold-windows-amd64.exe
- - name: Github Release
- if: github.actor == 'nickgerace'
- uses: ncipollo/release-action@v1.6.1
- with:
- tag: ${{ github.run_number }}
- artifacts: "gfold*"
- allowUpdates: "true"
- token: ${{ secrets.GITHUB_TOKEN }}
-