Trpc #580
Workflow file for this run
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: Build and deploy | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build_and_deploy: | |
name: Build and deploy PeterPortal | |
runs-on: ubuntu-latest | |
if: (github.event_name != 'pull_request' || !contains(github.event.pull_request.labels.*.name, 'no deploy')) | |
environment: | |
name: ${{ (github.event_name == 'pull_request' && format('staging-{0}', github.event.pull_request.number)) || 'production' }} | |
url: https://${{ (github.event_name == 'pull_request' && format('staging-{0}.', github.event.pull_request.number)) || '' }}peterportal.org | |
steps: | |
- name: Check Out Repo | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '18' | |
cache: 'npm' | |
- name: Install Dependencies | |
run: npm install | |
env: | |
HUSKY: 0 | |
- name: Build and deploy | |
run: npx sst deploy --stage ${{ (github.event_name == 'pull_request' && format('staging-{0}', github.event.pull_request.number)) || 'prod' }} | |
env: | |
CI: false | |
PUBLIC_API_URL: ${{secrets.PUBLIC_API_URL}} | |
PUBLIC_API_GRAPHQL_URL: ${{secrets.PUBLIC_API_GRAPHQL_URL}} | |
MONGO_URL: ${{secrets.MONGO_URL}} | |
SESSION_SECRET: ${{secrets.SESSION_SECRET}} | |
GOOGLE_CLIENT: ${{secrets.GOOGLE_CLIENT}} | |
GOOGLE_SECRET: ${{secrets.GOOGLE_SECRET}} | |
GRECAPTCHA_SECRET: ${{secrets.GRECAPTCHA_SECRET}} | |
ADMIN_EMAILS: ${{secrets.ADMIN_EMAILS}} | |
PRODUCTION_DOMAIN: ${{secrets.PRODUCTION_DOMAIN}} | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
NODE_ENV: ${{ github.event_name == 'pull_request' && 'staging' || 'production' }} |