Skip to content

Commit dfdf3d2

Browse files
authored
Fix website publishing CI pipeline (#669)
1 parent 9e4fe6c commit dfdf3d2

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/publish-github-pages.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
echo "{ \"releases\": [$(IFS=,; echo "${releases_with_artifact[*]}")] }" > website/zig-out/downloads/microzig/metadata.json
6363
6464
- name: Build Website
65-
run: zig build --summary all
65+
run: zig build --summary all -f
6666
working-directory: website
6767

6868
- name: List Contents
@@ -75,16 +75,15 @@ jobs:
7575
with:
7676
path: website/zig-out
7777

78-
7978
# Deploy job
8079
deploy:
8180
# Add a dependency to the build job
8281
needs: build
8382

8483
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
8584
permissions:
86-
pages: write # to deploy to Pages
87-
id-token: write # to verify the deployment originates from an appropriate source
85+
pages: write # to deploy to Pages
86+
id-token: write # to verify the deployment originates from an appropriate source
8887

8988
# Deploy to the github-pages environment
9089
environment:

0 commit comments

Comments
 (0)