Skip to content

Commit 1625f5d

Browse files
committed
add PROS build workflow
1 parent 9cff5c0 commit 1625f5d

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/pros-build.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: PROS Build Template
2+
3+
on:
4+
push:
5+
branches: "**"
6+
pull_request:
7+
branches: "**"
8+
9+
workflow_dispatch:
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v4
17+
18+
- name: Run LemLib/pros-build
19+
id: test
20+
uses: LemLib/pros-build@v3.0.0
21+
22+
- name: Upload Artifact
23+
uses: actions/upload-artifact@v4
24+
with:
25+
name: ${{ steps.test.outputs.name }}
26+
path: ${{ github.workspace }}/template/*

0 commit comments

Comments
 (0)