Update deploy-prod.yml
This commit is contained in:
parent
06050e71f4
commit
131cefa966
1 changed files with 10 additions and 4 deletions
14
.github/workflows/deploy-prod.yml
vendored
14
.github/workflows/deploy-prod.yml
vendored
|
@ -1,4 +1,4 @@
|
|||
name: QA
|
||||
name: Deployment
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
|
@ -9,9 +9,9 @@ on:
|
|||
- slack
|
||||
description: What app to deploy
|
||||
jobs:
|
||||
deploy:
|
||||
prepare:
|
||||
environment: Prod
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: ubuntu-latests
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: pnpm/action-setup@v2.2.1
|
||||
|
@ -25,5 +25,11 @@ jobs:
|
|||
run: pnpm install
|
||||
- name: Check linters
|
||||
run: pnpm build
|
||||
|
||||
deploy:
|
||||
environment: Prod
|
||||
runs-on: ubuntu-latests
|
||||
name: Deploy
|
||||
steps:
|
||||
- name: Deploy to Vecel
|
||||
run: echo "TODO"
|
||||
run: echo "TODO $TOKEN"
|
||||
|
|
Loading…
Reference in a new issue