Skip to content

Commit

Permalink
Init commit
Browse files Browse the repository at this point in the history
  • Loading branch information
marc2332 committed Sep 1, 2024
0 parents commit eb34f13
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Build Dioxus CLI

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

env:
CARGO_TERM_COLOR: always

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
repository: 'DioxusLabs/Dioxus'
ref: '0.5.6'

- name: Build
run: cargo build --package dioxus-cli --release

- uses: actions/upload-artifact@v4
with:
name: dx
path: './target/release/dx*'
if-no-files-found: 'error'

0 comments on commit eb34f13

Please sign in to comment.