diff --git a/.github/workflows/pros-build.yml b/.github/workflows/pros-build.yml new file mode 100644 index 0000000..b8c7a4f --- /dev/null +++ b/.github/workflows/pros-build.yml @@ -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/pros-build@v3.0.0 + + - name: Upload Artifact + uses: actions/upload-artifact@v4 + with: + name: ${{ steps.test.outputs.name }} + path: ${{ github.workspace }}/template/* \ No newline at end of file