Skip to content

Commit

Permalink
Fix jobs.
Browse files Browse the repository at this point in the history
  • Loading branch information
riga committed Mar 27, 2024
1 parent 71ccfeb commit 24657e1
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/deploy_images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
persist-credentials: false

- name: Build and deploy image 🐳
uses: docker/build-push-action@v1
uses: ./.github/actions/build-image
with:
dockerhub_username: ${{ secrets.DOCKERHUB_USERNAME }}
dockerhub_token: ${{ secrets.DOCKERHUB_TOKEN }}
Expand All @@ -79,7 +79,7 @@ jobs:
persist-credentials: false

- name: Build and deploy image 🐳
uses: docker/build-push-action@v1
uses: ./.github/actions/build-image
with:
dockerhub_username: ${{ secrets.DOCKERHUB_USERNAME }}
dockerhub_token: ${{ secrets.DOCKERHUB_TOKEN }}
Expand All @@ -91,15 +91,14 @@ jobs:
py39_base:
if: ${{ github.event.inputs.specific_job == 'none' || contains(github.event.inputs.specific_job, 'py39') }}
runs-on: ubuntu-latest
if: ${{ github.event.inputs.skip_push != 'true' }}
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
with:
persist-credentials: false

- name: Build and deploy image 🐳
uses: docker/build-push-action@v1
uses: ./.github/actions/build-image
with:
dockerhub_username: ${{ secrets.DOCKERHUB_USERNAME }}
dockerhub_token: ${{ secrets.DOCKERHUB_TOKEN }}
Expand All @@ -118,7 +117,7 @@ jobs:
persist-credentials: false

- name: Build and deploy image 🐳
uses: docker/build-push-action@v1
uses: ./.github/actions/build-image
with:
dockerhub_username: ${{ secrets.DOCKERHUB_USERNAME }}
dockerhub_token: ${{ secrets.DOCKERHUB_TOKEN }}
Expand All @@ -137,7 +136,7 @@ jobs:
persist-credentials: false

- name: Build and deploy image 🐳
uses: docker/build-push-action@v1
uses: ./.github/actions/build-image
with:
dockerhub_username: ${{ secrets.DOCKERHUB_USERNAME }}
dockerhub_token: ${{ secrets.DOCKERHUB_TOKEN }}
Expand All @@ -157,7 +156,7 @@ jobs:
persist-credentials: false

- name: Build and deploy image 🐳
uses: docker/build-push-action@v1
uses: ./.github/actions/build-image
with:
dockerhub_username: ${{ secrets.DOCKERHUB_USERNAME }}
dockerhub_token: ${{ secrets.DOCKERHUB_TOKEN }}
Expand Down

0 comments on commit 24657e1

Please sign in to comment.