Skip to content

Commit

Permalink
Merge pull request #8 from SizzinSeal/main
Browse files Browse the repository at this point in the history
👷 Add PROS-Build workflow
  • Loading branch information
Aang099 authored Jun 18, 2024
2 parents a948ba1 + ac1a13f commit 6b12ca0
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/pros-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: 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: build-template
uses: LemLib/[email protected]
with:
copy_readme_and_license_to_include: true
lib_folder_name: units

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

0 comments on commit 6b12ca0

Please sign in to comment.