Skip to content

Commit

Permalink
Try actions/deploy-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
DraTeots committed May 9, 2024
1 parent d1cdf58 commit d928909
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions .github/workflows/frontend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: built-site
name: github-pages
path: ./firebird-ng/dist/

deploy:
Expand All @@ -69,7 +69,7 @@ jobs:
- name: Download Artifacts
uses: actions/download-artifact@v4
with:
name: built-site
name: github-pages
path: ./dist/
- name: Introspect
run: |
Expand All @@ -78,9 +78,14 @@ jobs:
ls -latrh ./dist
echo "--- ls ./dist/firebird"
ls -latrh ./dist/firebird
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist/firebird
id: deployment
uses: actions/deploy-pages@v4



# - name: Deploy to GitHub Pages
# uses: peaceiris/actions-gh-pages@v4
# with:
# github_token: ${{ secrets.GITHUB_TOKEN }}
# publish_dir: ./dist/firebird

0 comments on commit d928909

Please sign in to comment.