Skip to content
This repository has been archived by the owner on Sep 22, 2022. It is now read-only.

Commit

Permalink
Use GitHub Actions to build binary on release
Browse files Browse the repository at this point in the history
  • Loading branch information
koenw committed Jul 11, 2022
1 parent 5a2f442 commit 4ce774b
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build-release-assets.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
name: Binary Release
on:
release:
types: [created]

jobs:
build:
name: Build & Upload
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Build
uses: rust-build/rust-build.action@v1.3.2
with:
RUSTTARGET: x86_64-unknown-linux-musl
UPLOAD_MODE: none
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: cis
path: |
${{ steps.compile.outputs.BUILT_ARCHIVE }}
${{ steps.compile.outputs.BUILT_CHECKSUM }}

0 comments on commit 4ce774b

Please # to comment.