85 lines
2.3 KiB
YAML
85 lines
2.3 KiB
YAML
on:
|
|
push:
|
|
branches:
|
|
master
|
|
pull_request:
|
|
|
|
env:
|
|
NODE_VERSION: 16
|
|
|
|
jobs:
|
|
prepare:
|
|
runs-on: ubuntu-latest
|
|
name: Prepare
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: site
|
|
path: |
|
|
index.html
|
|
styles.css
|
|
me.png
|
|
preview:
|
|
runs-on: ubuntu-latest
|
|
needs: prepare
|
|
name: Deploy preview
|
|
if: ${{ github.ref != 'refs/heads/master' }}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v2
|
|
id: node-setup
|
|
with:
|
|
node-version: ${{ env.NODE_VERSION }}
|
|
- name: Netlify CLI setup
|
|
run: npm install -g netlify-cli
|
|
- uses: actions/download-artifact@v2
|
|
with:
|
|
name: site
|
|
path: dist
|
|
- name: Deploy
|
|
id: preview-deploy
|
|
env:
|
|
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_TOKEN }}
|
|
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
|
|
run: |
|
|
netlify deploy --dir=dist > output.log
|
|
echo "::set-output name=draft-url::$(grep 'Website Draft URL' output.log)"
|
|
- name: Report
|
|
uses: actions/github-script@v2
|
|
env:
|
|
DRAFT_URL: ${{ steps.preview-deploy.outputs.draft-url }}
|
|
with:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
script: |
|
|
github.issues.createComment({
|
|
issue_number: context.issue.number,
|
|
owner: context.repo.owner,
|
|
repo: context.repo.repo,
|
|
body: `:eyes: Branch deployed at ${process.env.DRAFT_URL}`
|
|
})
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
name: Deploy
|
|
needs: prepare
|
|
if: ${{ github.ref == 'refs/heads/master' }}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v2
|
|
id: node-setup
|
|
with:
|
|
node-version: ${{ env.NODE_VERSION }}
|
|
- name: Build Artifacts
|
|
uses: actions/download-artifact@v2
|
|
with:
|
|
name: site
|
|
path: dist
|
|
- name: Netlify CLI setup
|
|
run: npm install -g netlify-cli
|
|
- name: Deploy
|
|
id: preview-deploy
|
|
env:
|
|
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_TOKEN }}
|
|
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
|
|
run: |
|
|
netlify deploy --dir=dist --prod
|