image update #1110
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
- name: Copy Orienting Directory | |
run: rsync -a --delete orienting.sfpc.study/ /var/www/orienting.sfpc.study/html/ | |