[Snyk] Security upgrade @angular/fire from 7.4.1 to 16.0.0 #3527
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: .NET 5 - Deployment in Docker | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
working-directory: ./src | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Pull - Docker Compose | |
run: docker-compose -f docker-compose.dev.yml pull | |
working-directory: ${{env.working-directory}} | |
- name: Building & Deploy - Docker Compose | |
run: docker-compose -f docker-compose.dev.yml up --build -d | |
working-directory: ${{env.working-directory}} |