1

Merge pull request #3 from ewpratten/github_ci

Cleaner GitHub CI scripts
This commit is contained in:
Evan Pratten 2022-12-18 12:09:04 -05:00 committed by GitHub
commit 6c1edacc0f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 40 additions and 27 deletions

View File

@ -1,5 +1,13 @@
name: Bundle Website
on: push
name: Build Website
on:
push:
branches:
- "*"
# Master has its own set of build rules,
# and will eventually call this script on its own
- "!master"
workflow_call:
jobs:
build:
@ -33,29 +41,5 @@ jobs:
- name: Publish site as artifact
uses: actions/upload-artifact@v2
with:
name: website
name: website-static-bundle
path: ./public
deploy:
runs-on: ubuntu-latest
needs: build
if: github.ref == 'refs/heads/master'
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Download website bundle
uses: actions/download-artifact@v2
with:
name: website
path: ./public
- name: Deploy to GitHub Pages
if: success()
uses: crazy-max/ghaction-github-pages@v2
with:
target_branch: gh-pages
build_dir: public
fqdn: ewpratten.com
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

29
.github/workflows/deploy.yml vendored Normal file
View File

@ -0,0 +1,29 @@
name: Deploy
on:
push:
branches:
- "master"
jobs:
build:
uses: ./.github/workflows/build.yml
deploy:
runs-on: ubuntu-latest
needs: build
steps:
- name: Download bundle artifact
uses: actions/download-artifact@v2
with:
name: website
path: ./public
- name: Deploy to GitHub Pages
if: success()
uses: crazy-max/ghaction-github-pages@v2
with:
target_branch: gh-pages
build_dir: public
fqdn: ewpratten.com
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}