Skip to content

Commit

Permalink
download pre-built packages for scheduled runs
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed Aug 12, 2024
1 parent 2f0714d commit b4552cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ecosystem-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,12 @@ jobs:
id: setup-node

- name: Download built packages (branch)
if: inputs.refType == 'branch'
if: inputs.refType == 'branch' || github.event_name == 'schedule'
uses: dawidd6/action-download-artifact@v4
with:
repo: ${{ inputs.repo }}
workflow: upload-packages.yml
branch: ${{ inputs.ref }}
branch: ${{ github.event_name == 'schedule' && 'main' || inputs.ref }}
name: packages
github_token: ${{ secrets.ECOSYSTEM_CI_ACCESS_TOKEN }}
path: built-packages
Expand Down

0 comments on commit b4552cc

Please sign in to comment.