Skip to content

Commit

Permalink
feat(ci/build/web): add support for custom artifact name
Browse files Browse the repository at this point in the history
This commit adds support for a custom artifact name in the build-package-web workflow. This allows users to specify a different name for the generated artifact if desired.
  • Loading branch information
SakuraIsayeki committed Feb 8, 2024
1 parent 5a8c397 commit ee3f0df
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build-package-web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ on:
description: 'Build Configuration'
type: string
required: true
artifact_name:
description: 'Artifact Name'
type: string
required: false
default: 'wowskarma_app'

permissions:
contents: read
Expand Down Expand Up @@ -41,5 +46,5 @@ jobs:
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: wowskarma_app
name: ${{ inputs.artifact_name }}
path: ./wowskarma.app/dist

0 comments on commit ee3f0df

Please sign in to comment.