1

Experimenting with CI

This commit is contained in:
Evan Pratten 2021-08-21 10:34:54 -04:00
parent d4d1da172a
commit 5855b6f170
2 changed files with 36 additions and 25 deletions

View File

@ -1,32 +1,24 @@
name: CI
on:
push:
branches:
- master
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
if: github.ref != 'refs/heads/master'
steps:
- name: 'Checkout'
uses: actions/checkout@master
- name: 'Build only'
uses: shalzz/zola-deploy-action@master
env:
BUILD_DIR: .
TOKEN: ${{ secrets.GITHUB_TOKEN }}
BUILD_ONLY: true
build_and_deploy:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/master'
steps:
- name: 'Checkout'
uses: actions/checkout@master
- name: 'Build and deploy'
uses: shalzz/zola-deploy-action@master
env:
PAGES_BRANCH: gh-pages
BUILD_DIR: .
TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v2
- name: Install and Run Zola
run: |
sudo snap install --edge zola
zola build
- uses: amondnet/vercel-action@v19
with:
vercel-token: ${{ secrets.VERCEL_TOKEN }}
github-token: ${{ secrets.GITHUB_TOKEN }}
vercel-org-id: ${{ secrets.ORG_ID}}
vercel-project-id: ${{ secrets.PROJECT_ID}}
working-directory: ./public

19
vercel.json Normal file
View File

@ -0,0 +1,19 @@
{
"version": 2,
"public": false,
"github": {
"enabled": false
},
"builds": [
{
"src": "./public/**",
"use": "@now/static"
}
],
"routes": [
{
"src": "/(.*)",
"dest": "public/$1"
}
]
}