-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Set up Github Actions to deploy to development
- Loading branch information
1 parent
09529f8
commit 5b400f2
Showing
1 changed file
with
41 additions
and
0 deletions.
There are no files selected for viewing
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
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/ |