Skip to content

Commit

Permalink
fix: content docker public
Browse files Browse the repository at this point in the history
  • Loading branch information
tanhongit committed Nov 12, 2024
1 parent a68c514 commit a3a9c56
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/node22-docker-public.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Publish Node image to Docker Hub
name: Publish Node 22 image to Docker Hub

on:
push:
Expand All @@ -17,7 +17,7 @@ env:
jobs:
push_to_registry:
if: github.event_name != 'pull_request'
name: Build and push Node image
name: Build and push Node 22 image
runs-on: ubuntu-latest
steps:
- name: Checkout repository
Expand Down Expand Up @@ -87,11 +87,11 @@ jobs:
type=raw,value=latest,enable=${{ github.ref == 'refs/heads/main' }}
type=raw,value=${{ steps.inc_version.outputs.new_version }}
- name: Build and push Node image
- name: Build and push Node 22 image
id: build-and-push
uses: docker/build-push-action@v6
with:
context: node
context: node22
push: true
tags: |
${{ env.DOCKERHUB_ID }}/${{ env.IMAGE_NAME }}:latest
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/php83-docker-public.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Publish PHP image to Docker Hub
name: Publish PHP83 image to Docker Hub

on:
push:
Expand All @@ -17,7 +17,7 @@ env:
jobs:
push_to_registry:
if: github.event_name != 'pull_request'
name: Build and push PHP image
name: Build and push PHP83 image
runs-on: ubuntu-latest
steps:
- name: Checkout repository
Expand Down Expand Up @@ -87,11 +87,11 @@ jobs:
type=raw,value=latest,enable=${{ github.ref == 'refs/heads/main' }}
type=raw,value=${{ steps.inc_version.outputs.new_version }}
- name: Build and push PHP image
- name: Build and push PHP83 image
id: build-and-push
uses: docker/build-push-action@v6
with:
context: php
context: php83
push: true
tags: |
${{ env.DOCKERHUB_ID }}/${{ env.IMAGE_NAME }}:latest
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/worker83-docker-public.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Publish Worker image to Docker Hub
name: Publish Worker83 image to Docker Hub

on:
push:
Expand All @@ -17,7 +17,7 @@ env:
jobs:
push_to_registry:
if: github.event_name != 'pull_request'
name: Build and push Worker image
name: Build and push Worker83 image
runs-on: ubuntu-latest
steps:
- name: Checkout repository
Expand Down Expand Up @@ -87,11 +87,11 @@ jobs:
type=raw,value=latest,enable=${{ github.ref == 'refs/heads/main' }}
type=raw,value=${{ steps.inc_version.outputs.new_version }}
- name: Build and push Worker image
- name: Build and push Worker83 image
id: build-and-push
uses: docker/build-push-action@v6
with:
context: worker
context: worker83
push: true
tags: |
${{ env.DOCKERHUB_ID }}/${{ env.IMAGE_NAME }}:latest
Expand Down

0 comments on commit a3a9c56

Please sign in to comment.