Skip to content

Bump http-cache-semantics from 4.1.0 to 4.1.1 (#47) #84

Bump http-cache-semantics from 4.1.0 to 4.1.1 (#47)

Bump http-cache-semantics from 4.1.0 to 4.1.1 (#47) #84

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- source
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Install and Build
run: |
npm install
npm run gen
npm run build
- name: Install SSH Client 🔑
uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.DEPLOY_KEY }}
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
BRANCH: master # The branch the action should deploy to.
FOLDER: dist # The folder the action should deploy.
CLEAN: true
SSH: true