Skip to content

Commit fdb0d56

Browse files
authored
Update GitHub Actions workflow with newer versions and terminology (#5)
* Update GitHub Actions workflow with newer versions and terminology changes (#3) - Rename workflow from "Docker" to "Container Image Build" - Update checkout action from v2 to v6 - Update docker/login-action, docker/metadata-action, and docker/build-push-action to latest commit SHAs - Change "Docker" references to "Container" in comments and step names - Modify tag pattern from 'v*.*.*' to '*v*.*.*' - Change context from '.' to './' * Update workflow to build on all branches and tags, upgrade actions versions (#4) This commit updates the GitHub workflow to trigger on all branches and tags instead of being disabled. It also upgrades checkout action to v6 and updates docker actions to their latest versions. Additionally, it renames references from "Docker" to "Container" throughout the workflow for consistency. Signed-off-by: Pratik Raj <rajpratik71@gmail.com> --------- Signed-off-by: Pratik Raj <rajpratik71@gmail.com>
1 parent a1a9331 commit fdb0d56

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/docker-publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ name: Container Image Build
77

88
on:
99
push:
10-
branches: [ ]
10+
branches: [ '*' ]
1111
# Publish semver tags as releases.
12-
tags: [ 'v*.*.*' ]
12+
tags: [ '*' ]
1313
pull_request:
1414
branches: [ ]
1515

@@ -58,4 +58,4 @@ jobs:
5858
context: ./
5959
push: ${{ github.event_name != 'pull_request' }}
6060
tags: ${{ steps.meta.outputs.tags }}
61-
labels: ${{ steps.meta.outputs.labels }}
61+
labels: ${{ steps.meta.outputs.labels }}

0 commit comments

Comments
 (0)