clone multiple repo and install pandoc #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Package into exe | |
on: | |
push: | |
branches: | |
- export_pdf | |
jobs: | |
job1: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.11"] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: Checkout wiki | |
uses: actions/checkout@v4 | |
with: | |
repository: DoctorReid/StarRailAutoProxy.wiki | |
ref: master | |
fetch-depth: 1 | |
path: wiki | |
- name: Install pandoc | |
run: apt-get install -y pandoc | |