Skip to content

Commit

Permalink
Add comments
Browse files Browse the repository at this point in the history
  • Loading branch information
steveluscher authored Nov 25, 2024
1 parent 38e8d3a commit f3177bc
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/actions/compile-gh-pages/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ description: Compiles content for GitHub Pages and uploads it to the artifact ca
inputs:
pr-number:
type: number
# Typically used when it's important to know the base URL for the GitHub Pages site,
# for instance when a web app's router needs to know its base URL.
repository:
default: 'solana-web3.js'
type: string
Expand All @@ -24,7 +26,8 @@ runs:
mv ./examples/react-app/dist/ .ghpages-deploy/example/
mv ./docs/* .ghpages-deploy/
- uses: actions/upload-artifact@v4
- name: Upload Deploy Directory to Artifact Cache
uses: actions/upload-artifact@v4
with:
include-hidden-files: true
name: ghpages-deploy-artifacts
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/preview-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ jobs:
- name: Install Dependencies
uses: ./.github/workflows/actions/install-dependencies

- uses: actions/download-artifact@v4
- name: Download Deploy Directory from Artifact Cache
uses: actions/download-artifact@v4
with:
path: .ghpages-deploy
pattern: ghpages-deploy-artifacts*
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/publish-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ jobs:
- name: Install Dependencies
uses: ./.github/workflows/actions/install-dependencies

- uses: actions/download-artifact@v4
- name: Download Deploy Directory from Artifact Cache
uses: actions/download-artifact@v4
with:
path: .ghpages-deploy
pattern: ghpages-deploy-artifacts*
Expand Down

0 comments on commit f3177bc

Please sign in to comment.