citra-emu
/
citra-web
Archived
1
0
Fork 0
This repository has been archived on 2024-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
citra-web/.github/workflows/deploy.yml

40 lines
862 B
YAML
Raw Normal View History

name: Deploy Site
on:
push:
2020-11-05 08:26:06 +00:00
branches: [ hugo ]
pull_request:
2020-11-05 08:26:06 +00:00
branches: [ hugo ]
schedule:
- cron: '35 0 */5 * *'
workflow_dispatch:
inputs:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Install dependencies
run: |
echo '========== Installing gulp & dependencies =========='
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
2020-11-05 08:26:06 +00:00
if: ${{ ! github.base_ref }}
uses: JamesIves/github-pages-deploy-action@3.7.1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: master
FOLDER: build
CLEAN: true
SINGLE_COMMIT: true