I think I understand the workflow now
This commit is contained in:
parent
56d3c6165c
commit
109ff3e118
13
.github/workflows/build-on-commit.yml
vendored
13
.github/workflows/build-on-commit.yml
vendored
@ -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
|
|
@ -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
|
@ -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()
|
Loading…
x
Reference in New Issue
Block a user