Skip to content

Commit

Permalink
rearrange file
Browse files Browse the repository at this point in the history
  • Loading branch information
a-mhamdi authored Aug 28, 2024
1 parent eba82e6 commit af6d85f
Showing 1 changed file with 12 additions and 18 deletions.
30 changes: 12 additions & 18 deletions .github/workflows/jlai.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,58 +11,52 @@ on:

jobs:

authenticate:
runs-on: ubuntu-latest
steps:
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}

jlai-p1:
runs-on: ubuntu-latest
needs:
- authenticate
steps:
- uses: actions/checkout@v4
- uses: docker/login-action@v3
with:
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Build and push Docker images
uses: docker/build-push-action@v6
with:
context: .
file: Docker/Dockerfile-1
# platforms: linux/amd64,linux/arm64,linux/arm/v7
push: true
tags: ${{ secrets.DOCKER_HUB_USERNAME }}/jlai-p1:latest
tags: abmhamdi/jlai-p1:latest
cache-from: type=gha
cache-to: type=gha,mode=max

jlai-p2:
runs-on: ubuntu-latest
needs:
- authenticate
steps:
- uses: actions/checkout@v4
- uses: docker/login-action@v3
with:
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Build and push Docker images
uses: docker/build-push-action@v6
with:
context: .
file: Docker/Dockerfile-2
# platforms: linux/amd64,linux/arm64,linux/arm/v7
push: true
tags: ${{ secrets.DOCKER_HUB_USERNAME }}/jlai-p2:latest
tags: abmhamdi/jlai-p2:latest

jlai-p3:
runs-on: ubuntu-latest
needs:
- authenticate
steps:
- uses: actions/checkout@v4
- uses: docker/login-action@v3
with:
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Build and push Docker images
uses: docker/build-push-action@v6
with:
context: .
file: Docker/Dockerfile-3
# platforms: linux/amd64,linux/arm64,linux/arm/v7
push: true
tags: ${{ secrets.DOCKER_HUB_USERNAME }}/jlai-p3:latest
tags: abmhamdi/jlai-p3:latest

0 comments on commit af6d85f

Please sign in to comment.