-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1a9d0cf
commit aaed7a5
Showing
1 changed file
with
10 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,11 +32,18 @@ jobs: | |
description: Deploying site to Netlify. Please wait... | ||
state: pending | ||
- run: rm -rf docs | ||
# - name: 'Download artifacts' | ||
# uses: actions/download-artifact@v4 | ||
# with: | ||
# name: "build-${{ steps.source-run-info.outputs.sourceHeadSha }}" | ||
# path: docs/ | ||
- name: 'Download artifacts' | ||
uses: actions/download-artifact@v4 | ||
uses: dawidd6/action-download-artifact@v2 | ||
with: | ||
name: "build-${{ steps.source-run-info.outputs.sourceHeadSha }}" | ||
path: docs/ | ||
github_token: ${{secrets.GITHUB_TOKEN}} | ||
workflow: netlify_build_docs.yml # Name of the workflow that created the artifact | ||
name: "build-${{ steps.source-run-info.outputs.sourceHeadSha }}" # Name of the artifact | ||
path: docs/ # Optional path to extract to | ||
# - name: 'Download artifact' | ||
# uses: actions/[email protected] | ||
# with: | ||
|