3 Commits

Author SHA1 Message Date
ebb6f5dc6c feat: 测试 semantic 2024-10-09 11:57:19 +08:00
da7c4ac612 feat: 添加检查 .git 文件夹的步骤 2024-10-09 11:46:38 +08:00
aca6c13ecb fix: 修复 docker-build-push action.yml 中的 context 配置 2024-10-09 11:34:13 +08:00
3 changed files with 29 additions and 17 deletions

View File

@ -2,6 +2,8 @@ name: 持续集成
on: on:
push: push:
branches:
- main
env: env:
TZ: Asia/Shanghai TZ: Asia/Shanghai
@ -22,18 +24,15 @@ jobs:
- uses: actions/checkout@main - uses: actions/checkout@main
- uses: yanhao98/semantic-release-action@main - uses: yanhao98/semantic-release-action@main
id: semantic id: semantic
- name: Print the new release version
run: |
echo ${{ steps.semantic.outputs.next_release_published }}
echo ${{ steps.semantic.outputs.next_release_version }}
- name: Login to Docker Hub - name: Login to Docker Hub
if: steps.semantic.outputs.next_release_published == 'true'
uses: docker/login-action@v3 uses: docker/login-action@v3
with: with:
username: ${{ vars.DOCKERHUB_USERNAME }} username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }} password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Login to GitHub Container Registry - name: Login to GitHub Container Registry
if: steps.semantic.outputs.next_release_published == 'true'
uses: docker/login-action@v3 uses: docker/login-action@v3
with: with:
registry: ghcr.io registry: ghcr.io
@ -41,21 +40,22 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }} password: ${{ secrets.GITHUB_TOKEN }}
- uses: yanhao98/composite-actions/docker-build-push@main - uses: yanhao98/composite-actions/docker-build-push@main
if: steps.semantic.outputs.next_release_published == 'true'
id: docker-build-push id: docker-build-push
with: with:
build_file: ./docker-build-push/Dockerfile build_file: ./docker-build-push/Dockerfile
build_platforms: linux/amd64 build_platforms: linux/amd64,linux/arm64
build_push: ${{ github.ref_type == 'tag' }} build_push: true
build_load: true build_load: false
metadata_images: | metadata_images: |
docker.io/${{ vars.DOCKERHUB_USERNAME }}/docker-example docker.io/${{ vars.DOCKERHUB_USERNAME }}/docker-example
ghcr.io/${{ github.repository }} ghcr.io/${{ github.repository }}
metadata_tags: | metadata_tags: |
type=semver,pattern={{version}} type=semver,pattern={{version}},value=${{ steps.semantic.outputs.next_release_version }}
type=semver,pattern={{major}}.{{minor}} type=semver,pattern={{major}}.{{minor}},value=${{ steps.semantic.outputs.next_release_version }}
type=semver,pattern={{major}} type=semver,pattern={{major}},value=${{ steps.semantic.outputs.next_release_version }}
- name: Check Docker image # - name: Check Docker image
run: | # run: |
set -x; # set -x;
docker images; # docker images;
docker run --rm ${{ steps.docker-build-push.outputs.imageid }} whoami; # docker run --rm ${{ steps.docker-build-push.outputs.imageid }} whoami;

View File

@ -54,7 +54,7 @@ runs:
id: meta id: meta
uses: docker/metadata-action@v5 # https://github.com/docker/metadata-action uses: docker/metadata-action@v5 # https://github.com/docker/metadata-action
with: with:
# context: git context: git
# flavor # flavor
images: ${{ inputs.metadata_images }} images: ${{ inputs.metadata_images }}
tags: ${{ inputs.metadata_tags }} tags: ${{ inputs.metadata_tags }}

View File

@ -16,7 +16,19 @@ description: "Setup pnpm + Node.js + install dependencies"
runs: runs:
using: "composite" using: "composite"
steps: steps:
- name: Check .git folder
id: check-git-folder
shell: bash
run: |
if [ -d .git ]; then
echo "Found .git folder"
echo "git-folder-exists=true" >> $GITHUB_OUTPUT
else
echo "No .git folder found"
echo "git-folder-exists=false" >> $GITHUB_OUTPUT
fi
- uses: actions/checkout@main - uses: actions/checkout@main
if: steps.check-git-folder.outputs.git-folder-exists == 'false'
with: with:
# fetch-depth: 0 # zero stands for full checkout, which is required for semantic-release # fetch-depth: 0 # zero stands for full checkout, which is required for semantic-release
filter: blob:none # we don't need all blobs, only the full tree filter: blob:none # we don't need all blobs, only the full tree