Skip to content

Commit

Permalink
Add filepicker-rs github action
Browse files Browse the repository at this point in the history
  • Loading branch information
Zusier committed Jan 14, 2022
1 parent 920479c commit 78a6a58
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/filepicker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: filepicker-rs

on:
push:
branches: [ main ]
paths:
- filepicker-rs/**
pull_request:
branches: [ main ]
paths:
- filepicker-rs/**
workflow_dispatch:

env:
CARGO_TERM_COLOR: always

jobs:
build:
runs-on: windows-2019

steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose --release --manifest-path ./filepicker-rs/Cargo.toml
- name: Upload a Build Artifact
uses: actions/upload-artifact@v2.3.1
with:
# Artifact name
# optional, default is artifact
# A file, directory or wildcard pattern that describes what to upload
path: D:\a\Atlas-Utilities\Atlas-Utilities\filepicker-rs\target\release\filepicker.exe

0 comments on commit 78a6a58

Please sign in to comment.