Skip to content

Commit

Permalink
workflows: basic release build
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-thompson committed Jan 7, 2024
1 parent 4488143 commit 0c8d86e
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Linux release

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

env:
CARGO_TERM_COLOR: always

jobs:
build:
name: Build
runs-on: ubuntu-2004

steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo build --release

0 comments on commit 0c8d86e

Please sign in to comment.