Skip to content

Commit

Permalink
Initial GHA workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
vslavik committed Aug 23, 2024
1 parent 260ce8e commit 16cfba4
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/build-package.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Build package

on: [push, pull_request]

jobs:
sentry-cli:
name: Build sentry-cli
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable-x86_64-pc-windows-msvc
- run: cargo build --release --locked

- uses: actions/upload-artifact@v3
with:
name: sentry-cli.exe
path: target/release/sentry-cli.exe

0 comments on commit 16cfba4

Please sign in to comment.