Skip to content

Commit

Permalink
Fix deploy script
Browse files Browse the repository at this point in the history
  • Loading branch information
Kayce Basques committed Nov 22, 2023
1 parent d799524 commit 571823e
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: deploy
name: website
on:
workflow_dispatch:
push:
Expand All @@ -9,15 +9,15 @@ permissions:
pages: write
id-token: write
jobs:
deploy:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
- name: bootstrap
run: |
source ${{github.workspace}}/bootstrap.sh
- name: build
- name: generate
run: |
make html
- name: pages
Expand All @@ -30,7 +30,7 @@ jobs:
environment:
name: github-pages
url: ${{steps.deployment.outputs.page_url}}
needs: bootstrap
needs: build
runs-on: ubuntu-latest
name: deploy
steps:
Expand Down

0 comments on commit 571823e

Please sign in to comment.