Skip to content

Commit

Permalink
chore: fix download action (#2285)
Browse files Browse the repository at this point in the history
  • Loading branch information
gfellerph authored Nov 20, 2023
1 parent 82b07cf commit 7f2fcfa
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
3 changes: 1 addition & 2 deletions .github/actions/artifact-download/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,12 @@ runs:
uses: dawidd6/action-download-artifact@v2
with:
name: ${{ inputs.name }}
path: ${{ inputs.folder }}
run_id: ${{ github.event.workflow_run.id }}
workflow_conclusion: success

- name: Unzip artifacts
shell: bash
run: unzip artifacts.zip
run: unzip ${{inputs.name}}/artifacts.zip -d ${{ inputs.folder }}

- name: Create outputs
id: build
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/build-documentation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,3 @@ jobs:
with:
name: design-system-documentation
folder: packages/documentation/storybook-static

- name: Upload internet header package
uses: ./.github/actions/artifact-upload
with:
name: internet-header
folder: packages/internet-header/dist

0 comments on commit 7f2fcfa

Please sign in to comment.