Skip to content
This repository has been archived by the owner on Jul 24, 2023. It is now read-only.

fix(server): subscription rewards and templates seed #16

fix(server): subscription rewards and templates seed

fix(server): subscription rewards and templates seed #16

Workflow file for this run

name: πŸš€ Deploy
on:
workflow_dispatch:
push:
branches:
- main
- dev
paths:
- ".github/workflows/server.yml"
- "Dockerfile.server"
- "packages/server/**"
- "!packages/server/package.json"
- "!packages/server/CHANGELOG.md"
pull_request: {}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
actions: write
contents: read
jobs:
lint:
name: ⬣ ESLint
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v3
- name: βŽ” Setup node
uses: actions/setup-node@v3
with:
node-version: 18
- name: πŸ“₯ Download deps
uses: bahmutov/npm-install@v1
- name: πŸ”¬ Lint
run: npm run lint
typecheck:
name: Κ¦ TypeScript
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v3
- name: βŽ” Setup node
uses: actions/setup-node@v3
with:
node-version: 18
- name: πŸ“₯ Download deps
uses: bahmutov/npm-install@v1
- name: πŸ”Ž Type check
run: npm run typecheck --if-present
deploy:
name: πŸš€ Deploy
runs-on: ubuntu-latest
needs: [lint, typecheck]
# only build/deploy main branch on pushes
if: ${{ (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/dev') && github.event_name == 'push' }}
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v3
- name: πŸ‘€ Read app name
uses: SebRollen/[email protected]
id: app_name
with:
file: fly.server.toml
field: app
- name: πŸš€ Deploy Staging
if: ${{ github.ref == 'refs/heads/dev' }}
uses: superfly/[email protected]
with:
args: deploy --remote-only --build-arg COMMIT_SHA=${{ github.sha }} --app ${{ steps.app_name.outputs.value }}-staging --dockerfile="Dokcerfile.server"
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
- name: πŸš€ Deploy Production
if: ${{ github.ref == 'refs/heads/main' }}
uses: superfly/[email protected]
with:
args: deploy --remote-only --build-arg COMMIT_SHA=${{ github.sha }} --app ${{ steps.app_name.outputs.value }} --dockerfile="Dockerfile.server"
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}