Skip to content

Commit

Permalink
Deploy!
Browse files Browse the repository at this point in the history
  • Loading branch information
lpil committed Jan 18, 2024
1 parent 840ffc2 commit 2217810
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,21 @@ jobs:
cd ..
- run: gleam run

# Deploy to GitHub pages.
# These steps only run for the main branch, each has an `if`.

- name: Setup Pages
uses: actions/configure-pages@v4
if: github.ref == 'refs/heads/main'

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: 'public'
if: github.ref == 'refs/heads/main'

- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
if: github.ref == 'refs/heads/main'

0 comments on commit 2217810

Please sign in to comment.