Skip to content

Commit

Permalink
Fix naming
Browse files Browse the repository at this point in the history
  • Loading branch information
CameronBeneteau committed Dec 2, 2024
1 parent e9963d0 commit 1c8d888
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,16 +39,16 @@ jobs:
echo "::set-output name=sanitized_project_name::$sanitized_project_name"
echo "::set-output name=platform::$platform"
- name: Build ${{ github.event.inputs.project }} for ${{ steps.defaults.outputs.platform }}
- name: Build ${{ steps.defaults.outputs.project_name }} for ${{ steps.defaults.outputs.platform }}
run: |
cd firmware
make PROJECT=${{ github.event.inputs.project }} PLATFORM=${{ steps.defaults.outputs.platform }} build
make PROJECT=${{ steps.defaults.outputs.project_name }} PLATFORM=${{ steps.defaults.outputs.platform }} build
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: build-artifact-${{ steps.defaults.outputs.sanitized_project_name }}-${{ steps.defaults.outputs.platform }}
path: firmware/build/${{ github.event.inputs.project }}/${{ steps.defaults.outputs.platform }}
path: firmware/build/${{ steps.defaults.outputs.project_name }}/${{ steps.defaults.outputs.platform }}

# deploy:
# runs-on: self-hosted
Expand Down

0 comments on commit 1c8d888

Please sign in to comment.