-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
aozhuochao
committed
Apr 18, 2024
1 parent
44a6d8d
commit baf7e5b
Showing
7 changed files
with
627 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -177,6 +177,27 @@ jobs: | |
|
||
# ----------------其他start--------------------- | ||
|
||
- name: 5.6-mysql | ||
uses: docker/[email protected] | ||
with: | ||
# Username used to log in to a Docker registry. If not set then no login will occur | ||
username: adockero | ||
# Password or personal access token used to log in to a Docker registry. If not set then no login will occur | ||
password: ${{ secrets.PASSWORD }} | ||
# Docker repository to tag the image with | ||
repository: adockero/php-nginx | ||
# Comma-delimited list of tags. These will be added to the registry/repository to form the image's tags | ||
tags: 5.6-mysql | ||
# Path to the Dockerfile (Default is '{path}/Dockerfile') | ||
# path: ./dockerfile | ||
dockerfile: Dockerfile.mysql | ||
# Always attempt to pull a newer version of the image | ||
always_pull: true | ||
# Comma-delimited list of build-time variables | ||
# build_args: FROM_ARG=adockero/php-nginx:5.6-mysql | ||
# Adds labels with git repository information to the built image | ||
add_git_labels: true | ||
|
||
- name: 5.6-mysql-git-auto | ||
uses: docker/[email protected] | ||
with: | ||
|
Oops, something went wrong.