Skip to content

Commit

Permalink
Merge pull request #3 from edeandrea/patch-1
Browse files Browse the repository at this point in the history
Update GH actions to non-deprecated versions
  • Loading branch information
danieloh30 committed Jul 23, 2024
2 parents 6916f52 + 6b9ceb8 commit 96caf87
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,24 +22,24 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '18'
node-version: '20'
- name: Install Antora
run: npm i antora
- name: Generate Site
run: npx antora default-site.yml
# run: npx antora content/default-site.yml
- name: Setup Pages
uses: actions/configure-pages@v3
uses: actions/configure-pages@v5
- name: find where the files are
run: |
pwd
#ls -alR .
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
uses: actions/upload-pages-artifact@v3
with:
path: www/
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
uses: actions/deploy-pages@v4

0 comments on commit 96caf87

Please sign in to comment.