This repository has been archived by the owner on Mar 4, 2024. It is now read-only.
Citra Progress Report 2023 H2 #275
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: Deploy Site | |
on: | |
push: | |
branches: [ hugo ] | |
pull_request: | |
branches: [ hugo ] | |
schedule: | |
- cron: '35 0 */5 * *' | |
workflow_dispatch: | |
inputs: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Install dependencies | |
run: | | |
echo '========== Installing gulp & dependencies ==========' | |
sudo apt-get update && sudo apt-get install graphicsmagick | |
- name: Build | |
env: | |
TENANT: 'citra' | |
GITHUB_WIKI_URL: 'https://github.com/citra-emu/citra.wiki.git' | |
run: ./.ci/build.sh | |
- name: Deploy | |
if: ${{ ! github.base_ref }} | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
branch: master | |
folder: build | |
clean: true | |
single-commit: true | |
force: true |