Parcourir la source

debug: github actions

pull/748/head
Collin Brown il y a 2 ans
Parent
révision
d604109f61
1 fichiers modifiés avec 9 ajouts et 3 suppressions
  1. +9
    -3
      .github/workflows/publish.yml

+ 9
- 3
.github/workflows/publish.yml Voir le fichier

@@ -18,13 +18,19 @@ jobs:
with:
go-version: '>=1.17.0'

- name: Install dependencies
- name: Install round
run: |
# Get dependencies for autogen.sh script
go install github.com/mingrammer/round@latest
apt-get install inkscape

- name: Install inkscape
run: |
sudo apt-get update && sudo apt-get install inkscape

- name: Install python dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi

- name: Build
run: |
cp -r resources docs/img/resources && mkdocs build -c -f mkdocs.yml


Chargement…
Annuler
Enregistrer