diff options
author | Nick <nickagerace@gmail.com> | 2021-03-29 22:38:45 -0400 |
---|---|---|
committer | Nick Gerace <nickagerace@gmail.com> | 2021-03-29 22:40:02 -0400 |
commit | 38ebaba01a33e3058676718c3cb0ac86883a4368 (patch) | |
tree | 3a13e39821bd3b18caedc13941047c894f5bd8ce /.github/workflows | |
parent | 85a5ca9b6c3c60a60927259a3557c8f20c28a01d (diff) | |
download | gfold-38ebaba01a33e3058676718c3cb0ac86883a4368.zip |
Remove binaries from releases
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/release.yml | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index f171d4d..0000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,31 +0,0 @@ -on: - push: - tags: ['*'] -name: release -jobs: - publish: - name: Publish for ${{ matrix.os }} - runs-on: ${{ matrix.os }} - strategy: - matrix: - include: - - os: ubuntu-latest - artifact_name: gfold - asset_name: gfold-linux-gnu-amd64 - - os: windows-latest - artifact_name: gfold.exe - asset_name: gfold-windows-amd64 - - os: macos-latest - artifact_name: gfold - asset_name: gfold-darwin-amd64 - steps: - - uses: actions/checkout@v2 - - name: Build - run: cargo build --release -Z unstable-options --out-dir release - - name: Upload binaries to release - uses: svenstaro/upload-release-action@v2 - with: - repo_token: ${{ secrets.GITHUB_TOKEN }} - file: release/${{ matrix.artifact_name }} - asset_name: ${{ matrix.asset_name }} - tag: ${{ github.ref }} |