Skip to content

fixed team selection #197

fixed team selection

fixed team selection #197

name: Build & Staging Deploy
on:
push:
branches:
- dev
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
- name: Setup Node
uses: actions/[email protected]
with:
node-version: 16
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: '3.0.100'
- name: Install Dependencies
run: yarn
- name: Generate Distribution
run: yarn build
env:
VITE_API_URL: ${{ secrets.VITE_API_URL }}
VITE_GANTT_KEY: ${{ secrets.VITE_GANTT_KEY }}
- name: Deploy
uses: lauchacarro/[email protected]
with:
enabled-static-website: 'true'
folder: 'dist'
index-document: 'index.html'
error-document: 'index.html'
connection-string: ${{ secrets.CONNECTION_STRING }}