Compare commits

..

No commits in common. "main" and "v1.0.3" have entirely different histories.
main ... v1.0.3

View File

@ -2,14 +2,7 @@ name: Build Docker Image And Push
on: on:
push: push:
branches: tags: [ 'v*.*.*' ]
- main
pull_request:
branches:
- main
# on:
# push:
# tags: [ 'v*.*.*' ]
env: env:
PHP_EXTENSION_INSTALL_VERSION: 'latest' PHP_EXTENSION_INSTALL_VERSION: 'latest'
@ -17,47 +10,44 @@ env:
jobs: jobs:
build: build:
name: Build PHP 8.0 name: Build PHP ${{ matrix.php-version }}
runs-on: ubuntu-latest runs-on: ${{ matrix.os }}
container: catthehacker/ubuntu:act-latest container:
# 使用支持docker的act镜像
image: catthehacker/ubuntu:act-latest
volumes:
# 缓存docker构建步骤
- ubuntu_dockercache:/opt/dockercache
env: env:
PHP_CLI_VERSION: 8.0-cli-alpine PHP_CLI_VERSION: ${{ matrix.php-version }}-cli-alpine
strategy:
matrix:
os: [ ubuntu-latest ]
php-version: ['8.0']
max-parallel: 8
steps: steps:
- name: Checkout
uses: actions/checkout@v4
with:
token: ${{ secrets.HUB_PASSWORD }}
- 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: http://git.des8.com/docker/login-action@master uses: docker/login-action@v3
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 # - name: Get Meta
uses: http://git.des8.com/docker/checkout@main # id: meta
with: # run: |
username: ${{ secrets.HUB_USERNAME }} # echo REPO_NAME=$(echo ${GITHUB_REPOSITORY} | awk -F"/" '{print $2}') >> $GITHUB_OUTPUT
password: ${{ secrets.HUB_PASSWORD }} # echo REPO_VERSION=$(echo ${{ github.ref }} | awk -F"/" '{print $3}' | awk -F"v" '{print $2}') >> $GITHUB_OUTPUT
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: http://git.des8.com/docker/build-push-action@master uses: build-push-action@v4
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: . context: .
file: ./Dockerfile file: ./Dockerfile
build-args: | build-args: |
@ -68,4 +58,3 @@ 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 }}