Skip to content

@jdshaeffer ( pull_request ) : 23/merge #5

@jdshaeffer ( pull_request ) : 23/merge

@jdshaeffer ( pull_request ) : 23/merge #5

Workflow file for this run

name: CI/CD
run-name: '@${{ github.actor }} ( ${{ github.event_name }} ) : ${{ github.ref_name }}'
defaults:
run:
shell: bash
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
name: Deploy
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- name: checkout
uses: actions/checkout@v3
- name: set up node.js
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: cache deps
uses: actions/cache@v2
with:
path: |
**/node_modules
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
- name: install
run: npm install
- name: build
run: npm run build
- name: deploy
run: |
git config --global user.name $user_name
git config --global user.email $user_email
git remote set-url origin https://${github_token}@github.com/${repository}
yarn deploy
env:
user_name: 'github-actions[bot]'
user_email: 'github-actions[bot]@users.noreply.github.com'
github_token: ${{ secrets.ACTIONS_DEPLOY_ACCESS_TOKEN }}
repository: ${{ github.repository }}