Skip to content

Commit

Permalink
i hope this workflow finally works
Browse files Browse the repository at this point in the history
  • Loading branch information
furtidev committed Nov 8, 2024
1 parent 6c6fd20 commit bd1d62e
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,26 @@ jobs:
id-token: write
runs-on: ubuntu-latest

environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}

steps:
- name: checkout
uses: actions/checkout@v4
- name: build_and_deploy
uses: zolacti/on@main
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Setup Zola
uses: jaxxstorm/[email protected]
with:
repo: getzola/zola
tag: v0.19.2
- name: Build site
run: zola build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: "./public"
- name: Deploy to GitHub pages
id: deployment
uses: actions/deploy-pages@v4

0 comments on commit bd1d62e

Please sign in to comment.