소스 검색

debug: github actions

pull/748/head
Collin Brown 2 년 전
부모
커밋
d604109f61
1개의 변경된 파일9개의 추가작업 그리고 3개의 파일을 삭제
  1. +9
    -3
      .github/workflows/publish.yml

+ 9
- 3
.github/workflows/publish.yml 파일 보기

@@ -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


불러오는 중...
취소
저장