Skip to content

Product Manager Changes #2

Product Manager Changes

Product Manager Changes #2

Workflow file for this run

name: Prod build and deployment
on:
push:
branches:
- 'main'
jobs:
BuildSimulation:
# TODO abort this workflow if the git user triggered it is not the release manager
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: |
echo building and packing and app...
DeploySimulation:
runs-on: ubuntu-latest
needs: BuildSimulation
steps:
- uses: actions/checkout@v3
- name: Deploy
run: |
echo deploying into Test env