Skip to content

Commit

Permalink
Merge pull request #157 from concordia-fsae/user/jl/fix
Browse files Browse the repository at this point in the history
Allow artifacts to be named to prevent upload collisions
  • Loading branch information
JoshLafleur authored Mar 9, 2025
2 parents e588448 + 59e8ed6 commit d320fbc
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@ on:
type: string
build-type:
description: "'platform' or 'targets' build"
required: true
default: "-j32"
type: string
artifact-name:
description: "Artifact name"
default: "artifact"
type: string
outputs:
build-artifacts-link:
Expand Down Expand Up @@ -57,6 +61,6 @@ jobs:
id: archive
uses: actions/upload-artifact@v4
with:
name: artifacts
name: ${{ inputs.artifact-name }}
path: platform-artifacts/

0 comments on commit d320fbc

Please sign in to comment.