Skip to content

Commit

Permalink
Update docker-image-api
Browse files Browse the repository at this point in the history
  • Loading branch information
KilianBoute committed Jun 24, 2024
1 parent 0ade85b commit 65206dd
Showing 1 changed file with 23 additions and 26 deletions.
49 changes: 23 additions & 26 deletions .github/workflows/docker-image-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,36 +2,33 @@ name: Docker Image API

on:
push:
branches: [ "main" ]
branches: ["main"]
pull_request:
branches: [ "main" ]
branches: ["main"]

jobs:

docker:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Build the Docker image
run: docker build . --file Dockerfile --tag my-image-name:$(date +%s)
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- uses: benjlevesque/[email protected]
id: short-sha
with:
length: 7
- name: Build and push
uses: docker/build-push-action@v6
with:
context: "{{defaultContext}}:api"
push: true
tags: uugai/facialaccess-backend:${{ steps.short-sha.outputs.sha }}
- name: Checkout code
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- uses: benjlevesque/[email protected]
id: short-sha
with:
length: 7
- name: Build and push
uses: docker/build-push-action@v6
with:
context: "{{defaultContext}}:api"
push: true
tags: uugai/facialaccess-backend:${{ steps.short-sha.outputs.sha }}

0 comments on commit 65206dd

Please sign in to comment.