Merge pull request #71 from davidhyongae2/new_compare2 #12
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
# This workflow will do a clean install of node dependencies, build the source code, run integration and end-to-end tests, and deploy to GitHub Pages. | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
name: Deploy on push to release-eleventy | |
on: | |
# pull_request: | |
# branches: [master] | |
push: | |
branches: [release-eleventy] | |
jobs: | |
build_and_deploy: | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
# node-version: [8.x, 10.x, 12.x] | |
node-version: [16.x] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
persist-credentials: false | |
- name: Set up Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install SSH Client 🔑 | |
uses: webfactory/ssh-agent@v0.5.3 | |
with: | |
ssh-private-key: ${{ secrets.SSH_KEY }} | |
- name: Run Webpack | |
run: cd _src && rm -rf node_modules && npm install && npm run build --if-present | |
env: | |
CI: true | |
- name: Build | |
run: bash _src/_compile.sh | |
env: | |
CI: true | |
- name: Deploy to gh-pages | |
uses: JamesIves/github-pages-deploy-action@releases/v3 | |
with: | |
SSH: true | |
BRANCH: gh-pages | |
FOLDER: build |