Skip to content

Commit

Permalink
chore: remove unnecessary inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
MEsteves22 committed Nov 30, 2023
1 parent 72bb5e6 commit 5c4ffb3
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions .github/actions/build-artifacts/action.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,6 @@
name: Artifacts
description: Build UI Kit Documentation and App

inputs:
build-app:
description: "Whether the app should be built or not."
required: false
type: boolean
default: true

runs:
using: "composite"
steps:
Expand All @@ -31,13 +24,11 @@ runs:
retention-days: 2

- name: Build App
if: ${{ inputs.build-app == 'true' }}
run: npm run build:app -- --base=${{ env.APP_BASE_PATH }}
shell: bash

- name: Archive App
uses: actions/upload-artifact@v3
if: ${{ inputs.build-app == 'true' }}
with:
name: app
path: ${{ github.workspace }}/app/dist
Expand Down

0 comments on commit 5c4ffb3

Please sign in to comment.