Skip to content

Merge pull request #5 from GridPlus/netbonus-patch-1 #10

Merge pull request #5 from GridPlus/netbonus-patch-1

Merge pull request #5 from GridPlus/netbonus-patch-1 #10

Workflow file for this run

name: Build
on:
push:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Upload production-ready build files
uses: actions/upload-artifact@v2
with:
name: production-files
path: ./data
deploy:
name: Deploy
needs: build
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
steps:
- name: Download artifact
uses: actions/download-artifact@v2
with:
name: production-files
path: ./data
- name: Deploy to gh-pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./data