Skip to content

Commit

Permalink
Build
Browse files Browse the repository at this point in the history
  • Loading branch information
wzhd committed May 12, 2023
1 parent 06858ff commit 18accf4
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/bui.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Build binary
run-name: ${{ github.actor }} is building
on:
push:
workflow_dispatch:
schedule:
- cron: "30 9 * * 6"
env:
CARGO_TERM_COLOR: always
permissions:
contents: write
jobs:
Explore-Build:
runs-on: ubuntu-20.04
steps:
- uses: dtolnay/rust-toolchain@stable
- run: echo "🎉 triggered by a ${{ github.event_name }} event"
- run: echo "🐧 running on a ${{ runner.os }} server"
- run: echo "🔎 on branch ${{ github.ref }}"
- name: Check out repository code
uses: actions/checkout@v3
- name: Build
run: cargo build --release
- run: |
gh release create ${{ github.run_number }} target/release/kseqi
env:
GITHUB_TOKEN: ${{ github.token }}
shell:
bash
- run: echo "🍏 result ${{ job.status }}."

0 comments on commit 18accf4

Please sign in to comment.