Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ jobs:
fi
echo "GIT_BRANCH=$GIT_BRANCH" >> $GITHUB_ENV
echo "DEST_DIR=$DEST_DIR" >> $GITHUB_ENV
echo "REPO_NAME=${GITHUB_REPOSITORY#$GITHUB_REPOSITORY_OWNER/}" >> $GITHUB_ENV
- name: Publish docs
uses: JamesIves/github-pages-deploy-action@v4
with:
Expand All @@ -85,4 +86,12 @@ jobs:
${{ env.CLEAN_EXCLUDE }}
single-commit: true
target-folder: ${{ env.DEST_DIR }}
folder: ${{ env.OUTPUT }}/linux/amd64
folder: ${{ env.OUTPUT }}/linux/amd64
- name: Comment PR
uses: thollander/actions-comment-pull-request@v2
if: github.event_name == 'pull_request'
with:
comment_tag: docs
mode: upsert
message: |
Documentation can be viewed [here](https://${{ github.repository_owner }}.github.io/${{ env.REPO_NAME }}${{ env.DEST_DIR }}).
3 changes: 3 additions & 0 deletions .github/workflows/dogfood.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,14 @@ name: Dogfood

on:
push:
branches: [main]
pull_request:

permissions:
id-token: write
contents: write
packages: write
pull-requests: write

jobs:
ci:
Expand Down