fix ci/cd #6
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: Deploy | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
install: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout PR | |
uses: actions/checkout@v4 | |
- name: 📥 Setup | |
uses: ./.github/actions/setup-job | |
- name: 📥 Monorepo install | |
uses: ./.github/actions/pnpm-install | |
- name: Build workflow parser | |
run: | | |
pnpm --filter @pipelineui/workflow-parser build | |
- name: Build language-server | |
run: | | |
pnpm --filter @pipelineui/workflow-languageserver build | |
- name: Build app | |
run: | | |
pnpm --filter @pipelineui/app build | |
- name: Deploy to Railway | |
working-directory: packages/app/.output | |
run: | | |
pnpm i -g @railway/cli | |
pnpm railway link --environment production ${{secrets.RAILWAY_API_PROJECT_ID}} | |
pnpm railway up -s pipelineui-server | |
env: | |
RAILWAY_TOKEN: ${{ secrets.RAILWAY_TOKEN }} |