From ee70a071aa6518d15bd6e5071e552cc02873330d Mon Sep 17 00:00:00 2001 From: liushuyu Date: Mon, 2 Nov 2020 21:55:19 -0700 Subject: [PATCH] Migrate to GitHub Actions (#209) * ci: switch to GitHub Actions * scripts: update shared-hugo-scripts * ci: install dependencies before hand * ci: add public environment variables --- .github/workflows/deploy.yml | 44 ++++++++++++++++++++++++++++++++++++ scripts/shared-hugo-scripts | 2 +- 2 files changed, 45 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 00000000..ee141b17 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,44 @@ +name: Deploy Site + +on: + push: + branches: [ hugo ] + pull_request: + branches: [ hugo ] + +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 + wget -O hugo.deb https://github.com/gohugoio/hugo/releases/download/v0.52/hugo_0.52_Linux-64bit.deb + sudo dpkg -i hugo.deb + yarn install + # Install dependencies one-by-one to avoid race-conditions + pushd ./scripts/shared-hugo-scripts/wiki/ && yarn && popd + pushd ./scripts/shared-hugo-scripts/compatdb/ && yarn && popd + hugo version + - name: Build + env: + GITHUB_WIKI_URL: 'https://github.com/yuzu-emu/yuzu-games-wiki.wiki.git' + TENANT: 'yuzu' + run: | + echo '========== Starting gulp deploy task ==========' + yarn run build + - name: Deploy + 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 diff --git a/scripts/shared-hugo-scripts b/scripts/shared-hugo-scripts index ccbc6671..3a78c188 160000 --- a/scripts/shared-hugo-scripts +++ b/scripts/shared-hugo-scripts @@ -1 +1 @@ -Subproject commit ccbc6671f302fe2f8ad9efcc78616ecf636888eb +Subproject commit 3a78c188239c90cb302e4bd39ac2f2cc3880ba48