Skip to content

Commit

Permalink
(another) fix for Docker Hub workflow
Browse files Browse the repository at this point in the history
================> EXTRAS <================
> Branch name:	main
  • Loading branch information
devdrops committed Mar 11, 2024
1 parent a60e45c commit 86a6df7
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/publish-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ jobs:
setup:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Docker login
env:
DOCKER_USER: ${{ secrets.DOCKERHUB_USERNAME }}
Expand All @@ -23,6 +21,8 @@ jobs:
needs: setup
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build and Push 7.4 images
run: |
cd ./7.4
Expand All @@ -32,6 +32,8 @@ jobs:
needs: setup
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build and Push 8.0 images
run: |
cd ./8.0
Expand All @@ -41,6 +43,8 @@ jobs:
needs: setup
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build and Push 8.1 images
run: |
cd ./8.1
Expand All @@ -50,6 +54,8 @@ jobs:
needs: setup
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build and Push 8.2 images
run: |
cd ./8.2
Expand All @@ -59,6 +65,8 @@ jobs:
needs: setup
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build and Push 8.3 images
run: |
cd ./8.3
Expand Down

0 comments on commit 86a6df7

Please sign in to comment.