From 06050e71f4df12ee2f03025e301e9863787ec6ec Mon Sep 17 00:00:00 2001 From: Lukasz Ostrowski Date: Sun, 29 Jan 2023 21:57:31 +0100 Subject: [PATCH] Create deploy-prod.yml --- .github/workflows/deploy-prod.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/deploy-prod.yml diff --git a/.github/workflows/deploy-prod.yml b/.github/workflows/deploy-prod.yml new file mode 100644 index 0000000..1307c0b --- /dev/null +++ b/.github/workflows/deploy-prod.yml @@ -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"