Compare commits
24 Commits
Author | SHA1 | Date | |
---|---|---|---|
a042ef8de6 | |||
ac0b90a1c1 | |||
4a53f20dc3 | |||
20aaed1f1c | |||
6cfa6e80fb | |||
95ffcdd3c8 | |||
a56aca42f4 | |||
fe24d4fad9 | |||
30d98896e7 | |||
226d70846b | |||
2ecdef7675 | |||
452b356321 | |||
feca5c9d3c | |||
25fe1f48c7 | |||
b7d9a17121 | |||
e090cfad10 | |||
8dddaafee3 | |||
5d444fc763 | |||
f287eeec5d | |||
7765d1cada | |||
b4b4274811 | |||
c20d67b6a8 | |||
7fa62852c4 | |||
2e4fc781ce |
50
.github/workflows/docker-image.yml
vendored
50
.github/workflows/docker-image.yml
vendored
@ -2,7 +2,14 @@ name: Build Docker Image And Push
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
tags: [ 'v*.*.*' ]
|
branches:
|
||||||
|
- main
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
# on:
|
||||||
|
# push:
|
||||||
|
# tags: [ 'v*.*.*' ]
|
||||||
|
|
||||||
env:
|
env:
|
||||||
PHP_EXTENSION_INSTALL_VERSION: 'latest'
|
PHP_EXTENSION_INSTALL_VERSION: 'latest'
|
||||||
@ -10,29 +17,49 @@ env:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: Build PHP ${{ matrix.php-version }}
|
name: Build PHP 8.0
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ubuntu-latest
|
||||||
container: catthehacker/ubuntu:act-latest
|
container: catthehacker/ubuntu:act-latest
|
||||||
env:
|
env:
|
||||||
PHP_CLI_VERSION: ${{ matrix.php-version }}-cli-alpine
|
PHP_CLI_VERSION: 8.0-cli-alpine
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
os: [ ubuntu-latest ]
|
|
||||||
php-version: ['8.0']
|
|
||||||
max-parallel: 8
|
|
||||||
steps:
|
steps:
|
||||||
- name: Login to Git Docker Hub
|
- name: Login to Git Docker Hub
|
||||||
# https://github.com/docker/login-action#docker-hub
|
# https://github.com/docker/login-action#docker-hub
|
||||||
uses: docker/login-action@v3
|
uses: http://git.des8.com/docker/login-action@master
|
||||||
with:
|
with:
|
||||||
registry: git.des8.com
|
registry: git.des8.com
|
||||||
username: ${{ secrets.HUB_USERNAME }}
|
username: ${{ secrets.HUB_USERNAME }}
|
||||||
password: ${{ secrets.HUB_PASSWORD }}
|
password: ${{ secrets.HUB_PASSWORD }}
|
||||||
|
|
||||||
|
- name: Checkout
|
||||||
|
uses: http://git.des8.com/docker/checkout@main
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.HUB_USERNAME }}
|
||||||
|
password: ${{ secrets.HUB_PASSWORD }}
|
||||||
|
repository: heibai2006/webman-docker
|
||||||
|
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
|
||||||
|
|
||||||
|
- name: Set up Docker BuildX
|
||||||
|
uses: https://git.des8.com/docker/setup-buildx-action@v2.6.0
|
||||||
|
|
||||||
|
- name: Extract metadata (tags, labels) for Docker
|
||||||
|
id: meta
|
||||||
|
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
|
||||||
|
with:
|
||||||
|
images: ${{ secrets.HUB_USERNAME }}/webman-docker
|
||||||
|
|
||||||
- name: Build and push
|
- name: Build and push
|
||||||
# https://github.com/docker/build-push-action
|
# https://github.com/docker/build-push-action
|
||||||
uses: docker/build-push-action@v4
|
uses: http://git.des8.com/docker/build-push-action@master
|
||||||
|
env:
|
||||||
|
# 必需有且置空,查看官方文档解释:https://docs.gitea.com/zh-cn/next/usage/actions/comparison?_highlight=build&_highlight=push&_highlight=action#dockerbuild-push-actionv4
|
||||||
|
ACTIONS_RUNTIME_TOKEN: ''
|
||||||
with:
|
with:
|
||||||
|
username: ${{ secrets.HUB_USERNAME }}
|
||||||
|
password: ${{ secrets.HUB_PASSWORD }}
|
||||||
|
repository: heibai2006/webman-docker
|
||||||
|
context: .
|
||||||
|
file: ./Dockerfile
|
||||||
build-args: |
|
build-args: |
|
||||||
PHP_CLI_VERSION=${{ env.PHP_CLI_VERSION }}
|
PHP_CLI_VERSION=${{ env.PHP_CLI_VERSION }}
|
||||||
PHP_EXTENSION_INSTALL_VERSION=${{ env.PHP_EXTENSION_INSTALL_VERSION }}
|
PHP_EXTENSION_INSTALL_VERSION=${{ env.PHP_EXTENSION_INSTALL_VERSION }}
|
||||||
@ -41,3 +68,4 @@ jobs:
|
|||||||
tags: |
|
tags: |
|
||||||
${{ secrets.HUB_USERNAME }}/webman-docker:${{ env.PHP_CLI_VERSION }}
|
${{ secrets.HUB_USERNAME }}/webman-docker:${{ env.PHP_CLI_VERSION }}
|
||||||
${{ secrets.HUB_USERNAME }}/webman-docker:${{ env.PHP_CLI_VERSION }}${{ github.ref_type == 'tag' && format('-{0}', github.ref_name) || '' }}
|
${{ secrets.HUB_USERNAME }}/webman-docker:${{ env.PHP_CLI_VERSION }}${{ github.ref_type == 'tag' && format('-{0}', github.ref_name) || '' }}
|
||||||
|
labels: ${{ steps.meta.outputs.labels }}
|
@ -1,5 +1,5 @@
|
|||||||
# https://hub.docker.com/_/php
|
# https://hub.docker.com/_/php
|
||||||
ARG PHP_CLI_VERSION=8.1-cli-alpine
|
ARG PHP_CLI_VERSION=8.0-cli-alpine
|
||||||
# https://hub.docker.com/r/mlocati/php-extension-installer
|
# https://hub.docker.com/r/mlocati/php-extension-installer
|
||||||
ARG PHP_EXTENSION_INSTALL_VERSION=latest
|
ARG PHP_EXTENSION_INSTALL_VERSION=latest
|
||||||
# https://hub.docker.com/r/composer/composer
|
# https://hub.docker.com/r/composer/composer
|
||||||
|
Loading…
Reference in New Issue
Block a user