Skip to content

Add workflow for cleaning up temporary folders on Windows #3

Add workflow for cleaning up temporary folders on Windows

Add workflow for cleaning up temporary folders on Windows #3

name: Env - Deployment Protection Rule
on:
push:
branches:
- main
jobs:
deploy-to-dev:
runs-on: ubuntu-latest
environment: dev
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Deploy to Dev
run: echo "Deploying to the dev environment."
deploy-to-prod:
needs: deploy-to-dev
runs-on: ubuntu-latest
environment: prod
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Deploy to Prod
run: echo "Deploying to the prod environment."