Bump @types/react-dom from 19.2.2 to 19.2.3 in /webapp #594
Workflow file for this run
This file contains hidden or 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: API Docker Image Deploy | |
| on: | |
| push: | |
| branches: [ "**" ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| env: | |
| working-directory: ./api | |
| git_hash: $(git rev-parse --short "$GITHUB_SHA") | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Build the API Docker image | |
| run: docker build . --file Dockerfile --tag dnprogramming/api:latest | |
| working-directory: ${{ env.working-directory}} | |
| - name: Log in to Docker Hub | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ secrets.DOCKER_USERNAME }} | |
| password: ${{ secrets.DOCKER_PASSWORD }} | |
| - name: Push the API Docker image | |
| run: docker push dnprogramming/api:latest |