1

I think I understand the workflow now

This commit is contained in:
Evan Pratten 2022-12-18 12:07:24 -05:00
parent 56d3c6165c
commit 109ff3e118
3 changed files with 20 additions and 15 deletions

View File

@ -1,13 +0,0 @@
name: Build Commit
on:
push:
branches:
- "*"
- "!master"
jobs:
call-build:
runs-on: ubuntu-latest
needs: build
steps:
- uses: ./.github/workflows/build-site.yml

View File

@ -1,6 +1,12 @@
name: Build Website name: Build Website
on: on:
push:
branches:
- "*"
# Master has its own set of build rules,
# and will eventually call this script on its own
- "!master"
workflow_call: workflow_call:
jobs: jobs:
@ -31,3 +37,9 @@ jobs:
- name: Delete dist gitignore - name: Delete dist gitignore
run: sudo rm -f ./public/dist/.gitignore run: sudo rm -f ./public/dist/.gitignore
- name: Publish site as artifact
uses: actions/upload-artifact@v2
with:
name: website-static-bundle
path: ./public

View File

@ -5,12 +5,18 @@ on:
- "master" - "master"
jobs: jobs:
build:
uses: ./.github/workflows/build.yml
deploy: deploy:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: build needs: build
steps: steps:
- name: Build Site - name: Download bundle artifact
uses: ./.github/workflows/common/build-site.yml uses: actions/download-artifact@v2
with:
name: website
path: ./public
- name: Deploy to GitHub Pages - name: Deploy to GitHub Pages
if: success() if: success()