build(deps): Bump docker/build-push-action from f2a1d5e99d037542a71f64918e516c093c6f3fc4 to 831ca179d3cf91cf0c90ca465a408fa61e2129a2 #337
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-docker-images | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
build-potal: | |
runs-on: ubuntu-latest | |
permissions: | |
packages: write | |
contents: read | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Build Potal Docker image | |
uses: docker/build-push-action@831ca179d3cf91cf0c90ca465a408fa61e2129a2 | |
with: | |
context: . | |
file: ./docker/potal/Dockerfile | |
push: false | |
build-backend: | |
runs-on: ubuntu-latest | |
permissions: | |
packages: write | |
contents: read | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Build Backend Docker image | |
uses: docker/build-push-action@831ca179d3cf91cf0c90ca465a408fa61e2129a2 | |
with: | |
context: . | |
file: ./docker/backend/Dockerfile | |
push: false |