Skip to content

Commit

Permalink
Create reusable workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
CameronBeneteau committed Dec 2, 2024
1 parent 891390b commit 205ca95
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/reusable-build-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ on:
type: string

jobs:
build:
runs-on: self-hosted
steps:
- name: Checkout repository
uses: actions/checkout@v4
build:
runs-on: self-hosted
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Build ${{ github.event.inputs.project }} for ${{ github.event.inputs.platform }}
run: |
cd firmware
make PROJECT=${{ github.event.inputs.project }} PLATFORM=${{ github.event.inputs.platform }} build
- name: Build ${{ inputs.project }} for ${{ inputs.platform }}
run: |
cd firmware
make PROJECT=${{ inputs.project }} PLATFORM=${{ inputs.platform }} build

0 comments on commit 205ca95

Please sign in to comment.