mirror of
https://github.com/Instadapp/chains.git
synced 2024-07-29 22:37:19 +00:00
Build and deploy gatsby
This commit is contained in:
parent
a1f4fe4f11
commit
12f2a5e510
22
.github/workflows/build_and_deploy.yml
vendored
22
.github/workflows/build_and_deploy.yml
vendored
|
@ -6,10 +6,12 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2.3.1
|
uses: actions/checkout@v2.3.1
|
||||||
|
with:
|
||||||
|
submodules: recursive
|
||||||
|
|
||||||
- name: Get changed files
|
- name: Get changed files
|
||||||
id: changed-files
|
id: changed-files
|
||||||
uses: tj-actions/changed-files@v35
|
uses: tj-actions/changed-files@v35.4.4
|
||||||
|
|
||||||
- name: Check changed files
|
- name: Check changed files
|
||||||
run: |
|
run: |
|
||||||
|
@ -32,14 +34,24 @@ jobs:
|
||||||
id: extract_branch
|
id: extract_branch
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2.3.1
|
uses: actions/checkout@v2.3.1
|
||||||
|
with:
|
||||||
|
submodules: recursive
|
||||||
if: ${{ github.event_name != 'pull_request' && steps.extract_branch.outputs.branch == 'master' }}
|
if: ${{ github.event_name != 'pull_request' && steps.extract_branch.outputs.branch == 'master' }}
|
||||||
- name: Build
|
- name: Run install
|
||||||
run: |
|
uses: borales/actions-yarn@v4
|
||||||
./gradlew run
|
with:
|
||||||
|
dir: 'website'
|
||||||
|
cmd: install # will run `yarn install` command
|
||||||
|
if: ${{ github.event_name != 'pull_request' && steps.extract_branch.outputs.branch == 'master' }}
|
||||||
|
- name: Test the app
|
||||||
|
uses: borales/actions-yarn@v4
|
||||||
|
with:
|
||||||
|
dir: 'website'
|
||||||
|
cmd: run build # will run `yarn test` command
|
||||||
if: ${{ github.event_name != 'pull_request' && steps.extract_branch.outputs.branch == 'master' }}
|
if: ${{ github.event_name != 'pull_request' && steps.extract_branch.outputs.branch == 'master' }}
|
||||||
- name: Deploy
|
- name: Deploy
|
||||||
uses: JamesIves/github-pages-deploy-action@4.1.4
|
uses: JamesIves/github-pages-deploy-action@4.1.4
|
||||||
with:
|
with:
|
||||||
branch: gh-pages
|
branch: gh-pages
|
||||||
folder: output
|
folder: website/public
|
||||||
if: ${{ github.event_name != 'pull_request' && steps.extract_branch.outputs.branch == 'master' }}
|
if: ${{ github.event_name != 'pull_request' && steps.extract_branch.outputs.branch == 'master' }}
|
Loading…
Reference in New Issue
Block a user