This repository has been archived by the owner on Jul 9, 2024. It is now read-only.
Implemented Profile Completion Phone. #43
Workflow file for this run
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: Build Master Backend | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'backend/**' | |
pull_request: | |
branches: | |
- main | |
paths: | |
- 'backend/**' | |
workflow_dispatch: | |
defaults: | |
run: | |
working-directory: ./backend | |
jobs: | |
build: | |
name: Build Master Backend | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Build Docker Image | |
run: docker build . -t francispion.azurecr.io/master_backend:${{ github.sha }} -f src/Logitar.Master/Dockerfile |