Skip to content

Commit 2f23c9d

Browse files
committed
Update README
1 parent 47863c5 commit 2f23c9d

5 files changed

Lines changed: 12 additions & 15 deletions

File tree

.github/workflows/action_branch.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,8 @@ jobs:
3232
enabled: true
3333
can_deploy: true
3434
name: ${{ needs.params.outputs.name }}
35-
matrix_version: ${{ needs.params.outputs.matrix_version }}
36-
matrix_arch: ${{ needs.params.outputs.matrix_arch }}
37-
matrix_refs: ${{ needs.params.outputs.matrix_refs }}
35+
matrix: ${{ needs.params.outputs.matrix }}
36+
refs: ${{ needs.params.outputs.refs }}
3837
secrets:
3938
dockerhub_username: ${{ secrets.DOCKERHUB_USERNAME }}
4039
dockerhub_password: ${{ secrets.DOCKERHUB_PASSWORD }}

.github/workflows/action_pull_request.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,8 @@ jobs:
2828
enabled: true
2929
can_deploy: false
3030
name: ${{ needs.params.outputs.name }}
31-
matrix_version: ${{ needs.params.outputs.matrix_version }}
32-
matrix_arch: ${{ needs.params.outputs.matrix_arch }}
33-
matrix_refs: ${{ needs.params.outputs.matrix_refs }}
31+
matrix: ${{ needs.params.outputs.matrix }}
32+
refs: ${{ needs.params.outputs.refs }}
3433
secrets:
3534
dockerhub_username: ""
3635
dockerhub_password: ""

.github/workflows/action_schedule.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,8 @@ jobs:
2929
enabled: true
3030
can_deploy: true
3131
name: ${{ needs.params.outputs.name }}
32-
matrix_version: ${{ needs.params.outputs.matrix_version }}
33-
matrix_arch: ${{ needs.params.outputs.matrix_arch }}
34-
matrix_refs: ${{ needs.params.outputs.matrix_refs }}
32+
matrix: ${{ needs.params.outputs.matrix }}
33+
refs: ${{ needs.params.outputs.refs }}
3534
secrets:
3635
dockerhub_username: ${{ secrets.DOCKERHUB_USERNAME }}
3736
dockerhub_password: ${{ secrets.DOCKERHUB_PASSWORD }}

.github/workflows/params.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,17 @@ env:
1515
[
1616
{
1717
"NAME": "mysql",
18-
"VERSION": ["5.5", "5.6", "5.7"],
18+
"VERSION": ["5.5", "5.6", "5.7", "8.0"],
1919
"ARCH": ["linux/amd64"]
2020
},
2121
{
22-
"NAME": "mysql",
23-
"VERSION": ["8.0"],
24-
"ARCH": ["linux/amd64", "linux/arm64"]
22+
"NAME": "mariadb",
23+
"VERSION": ["5.5", "10.0"],
24+
"ARCH": ["linux/amd64"]
2525
},
2626
{
2727
"NAME": "mariadb",
28-
"VERSION": ["5.5", "10.0", "10.1", "10.2", "10.3", "10.4", "10.5", "10.6"],
28+
"VERSION": ["10.1", "10.2", "10.3", "10.4", "10.5", "10.6"],
2929
"ARCH": ["linux/amd64", "linux/arm64"]
3030
},
3131
{

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
[![type](https://img.shields.io/badge/type-Docker-blue.svg)](https://hub.docker.com/r/devilbox/mysql)
1212
[![License](https://img.shields.io/badge/license-MIT-%233DA639.svg)](https://opensource.org/licenses/MIT)
1313

14-
**Available Architectures:** `amd64`, `arm64`
14+
**Available Architectures:** `amd64`, `i386`, `arm64`
1515

1616
The purpose of this project is to simply re-tag the official Docker images for
1717
[MySQL](https://hub.docker.com/_/mysql), [MariaDB](https://hub.docker.com/_/mariadb) and

0 commit comments

Comments
 (0)