feat 修改build流程
All checks were successful
Build image / build (push) Successful in 3s

This commit is contained in:
timerzz 2024-04-12 14:07:00 +08:00
parent 9571733bbe
commit f8f56336a9
3 changed files with 7 additions and 21 deletions

View File

@ -1,8 +0,0 @@
name: Build image
run-name: ${{ github.actor }} 构建镜像
on: [push]
jobs:
Explore-Gitea-Actions:
runs-on: ubuntu-latest
steps:
- run: docker build -t ${{ DOCKER_REGISTRY }}/${{ IMAGE_NAME }}:latest .

View File

@ -0,0 +1,7 @@
name: Build image
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- run: ls

View File

@ -1,13 +0,0 @@
name: push image
run-name: ${{ github.actor }} is testing out Gitea Actions 🚀
on:
workflow_run:
workflows: [Build image]
types: [completed]
jobs:
on-success:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- run: echo 'The triggering workflow passed'