Skip to content

Commit

Permalink
add PROS build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
SizzinSeal committed Dec 30, 2024
1 parent 9cff5c0 commit 1625f5d
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/pros-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: PROS Build Template

on:
push:
branches: "**"
pull_request:
branches: "**"

workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Run LemLib/pros-build
id: test
uses: LemLib/[email protected]

- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: ${{ steps.test.outputs.name }}
path: ${{ github.workspace }}/template/*

0 comments on commit 1625f5d

Please sign in to comment.