Skip to content

Commit

Permalink
Set up Github Actions to deploy to development
Browse files Browse the repository at this point in the history
  • Loading branch information
shirleyfyx committed Oct 22, 2023
1 parent 09529f8 commit 5b400f2
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/deploy_development.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Deploy to Development

on:
push:
branches: [ development ]

jobs:
deploy:
name: Deploy Process
runs-on: ubuntu-latest
environment: development
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Set up Node.js 18.x:
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install Dependencies
run: corepack enable && yarn install
- name: Run unit tests
run: yarn test
- name: Build
run: yarn build
- name: Generate .env file
run: |
touch ./dist/.env
echo GOOGLE_ACCOUNT_CLIENT=${{ secrets.GOOGLE_ACCOUNT_CLIENT }} >> .env
echo GOOGLE_ACCOUNT_SECRET=${{ secrets.GOOGLE_ACCOUNT_SECRET }} >> .env
echo GOOGLE_ACCOUNT_TOKEN=${{ secrets.GOOGLE_ACCOUNT_TOKEN }} >> .env
echo SLACK_APP_TOKEN=${{ secrets.SLACK_APP_TOKEN }} >> .env
echo SLACK_OAUTH_TOKEN=${{ secrets.SLACK_OAUTH_TOKEN }} >> .env
echo SLACK_SIGNING_SECRET=${{ secrets.SLACK_SIGNING_SECRET }} >> .env
- name: Copy files to server
uses: appleboy/scp-action@master
with:
host: ${{ secrets.REMOTE_HOST }}
username: ${{ secrets.REMOTE_USER }}
key: ${{ secrets.REMOTE_KEY }}
source: dist
target: ~/minerva-dev/

0 comments on commit 5b400f2

Please sign in to comment.