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
13 changes: 13 additions & 0 deletions .github/workflows/generate-readme.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,19 @@ jobs:
path: doctool
token: ${{ secrets.token }}

- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y xvfb scrot python3-tk x11-xserver-utils x11-utils x11-xkb-utils

- name: Start virtual display
run: |
Xvfb :99 -screen 0 1024x768x24 &
sleep 3
touch ~/.Xauthority
xauth add :99 . $(xxd -l 16 -p /dev/urandom)
echo "DISPLAY=:99" >> $GITHUB_ENV

- name: Launch local doctool
uses: ./doctool
id: launch-doctool
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/starter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ jobs:

call-generate-readme-workflow:
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'
uses: Keyfactor/actions/.github/workflows/generate-readme.yml@v3
uses: Keyfactor/actions/.github/workflows/generate-readme.yml@3.2.0-rc.5
secrets:
token: ${{ secrets.token }}

Expand Down