Skip to content

Commit

Permalink
feat: add extra args
Browse files Browse the repository at this point in the history
  • Loading branch information
ajgrande924 committed Oct 12, 2023
1 parent 15bde22 commit fe57130
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions actions/cicd-build-publish-artifacts-ts/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,14 @@ inputs:
description: ""
required: false
default: "bin/*"
extra-build-args:
description: ""
required: false
default: ""
extra-package-args:
description: ""
required: false
default: ""
# monorepo inputs
publish-monorepo-release:
description: ""
Expand Down Expand Up @@ -98,11 +106,11 @@ runs:

- name: Run build
shell: bash
run: pnpm run build
run: pnpm run build ${{ inputs.extra-build-args }}

- name: Run package
shell: bash
run: pnpm run package
run: pnpm run package ${{ inputs.extra-package-args }}

- name: Prep release cmd
if: inputs.publish-release == 'true'
Expand Down

0 comments on commit fe57130

Please sign in to comment.