Skip to content

Commit

Permalink
Use another download action
Browse files Browse the repository at this point in the history
  • Loading branch information
bigorn0 committed Sep 20, 2023
1 parent ccac6d6 commit e32b417
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions .github/workflows/macos-intel-build-prebuilds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,25 @@ jobs:
with:
cache: npm
node-version: 18
- name: Download list of modules to rebuild for Electron
uses: actions/download-artifact@v3
- name: Download artifact
id: download-artifact
uses: dawidd6/action-download-artifact@v2
with:
# Optional, GitHub token, a Personal Access Token with `public_repo` scope if needed
# Required, if the artifact is from a different repo
# Required, if the repo is private a Personal Access Token with `repo` scope is needed or GitHub token in a job where the permissions `action` scope set to `read`
github_token: ${{secrets.GITHUB_TOKEN}}
# Optional, workflow file name or ID
# If not specified, will be inferred from run_id (if run_id is specified), or will be the current workflow
workflow: discover-and-prepare-upstream-native-modules.yml
# Optional, the status or conclusion of a completed workflow to search for
# Can be one of a workflow conclusion:
# "failure", "success", "neutral", "cancelled", "skipped", "timed_out", "action_required"
# Or a workflow status:
# "completed", "in_progress", "queued"
# Use the empty string ("") to ignore status or conclusion in the search
workflow_conclusion: success
name: modulesToBuildForElectron

# Openssl3 and krb5 are already installed on Github host Mac OS runners
- name: Install toolkit
run: npm install
Expand Down

0 comments on commit e32b417

Please sign in to comment.