Skip to content

Commit

Permalink
Create build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ABUCKY0 authored May 30, 2024
1 parent 8deecd6 commit 78ad36d
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: PROS Build Example

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

workflow_dispatch:

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

- name: Run abucky0/pros-build
id: test
uses: abucky0/pros-build@v1.0.0-alpha10

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

0 comments on commit 78ad36d

Please sign in to comment.