Skip to content

Merge branch 'main' of https://github.com/SFPC/sfpc-notion into main #1019

Merge branch 'main' of https://github.com/SFPC/sfpc-notion into main

Merge branch 'main' of https://github.com/SFPC/sfpc-notion into main #1019

Workflow file for this run

name: Continuous Deployment
on:
push:
branches:
- main
jobs:
deployment:
runs-on: self-hosted
environment: .env
steps:
- name: Checkout main branch
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: '16.x'
- name: Install dependencies
run: npm ci
- name: Create env file
run: |
touch .env
echo NOTION_TOKEN=${{ secrets.NOTION_TOKEN }} >> .env
cat .env