Create deploy-prod.yml

This commit is contained in:
Lukasz Ostrowski 2023-01-29 21:57:31 +01:00 committed by GitHub
parent 3e540fdc16
commit 06050e71f4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

29
.github/workflows/deploy-prod.yml vendored Normal file
View file

@ -0,0 +1,29 @@
name: QA
on:
workflow_dispatch:
inputs:
app_name:
type: choice
required: true
options:
- slack
description: What app to deploy
jobs:
deploy:
environment: Prod
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: pnpm/action-setup@v2.2.1
with:
version: 6.19.1
- uses: actions/setup-node@v3
with:
node-version: "18"
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Check linters
run: pnpm build
- name: Deploy to Vecel
run: echo "TODO"