yaml 配置
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 2m44s

This commit is contained in:
Song367 2025-08-05 15:48:37 +08:00
parent 34e9aa13b5
commit 5a734b6a48

View File

@ -3,7 +3,7 @@ run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: on:
push: push:
branches: branches:
- 'demo-t*' - 'female-dt'
env: env:
BUILD: staging BUILD: staging
@ -30,15 +30,15 @@ jobs:
uses: https://gitea.yantootech.com/neil/build-push-action@v6 uses: https://gitea.yantootech.com/neil/build-push-action@v6
with: with:
push: false push: false
tags: emotion-digital-video:${{ gitea.run_id }} tags: emotion-female-digital-video:${{ gitea.run_id }}
- name: Run docker - name: Run docker
run: | run: |
pwd pwd
if [ "$(docker ps -q -f name=^emotion-digital-video$)" ]; then if [ "$(docker ps -q -f name=^emotion-female-digital-video$)" ]; then
docker stop emotion-digital-video docker stop emotion-female-digital-video
fi fi
docker run -d --rm --name emotion-digital-video \ docker run -d --rm --name emotion-female-digital-video \
-v /usr/share/fonts/opentype/noto:/usr/share/fonts \ -v /usr/share/fonts/opentype/noto:/usr/share/fonts \
-p 6900:3000 \ -p 6901:3000 \
emotion-digital-video:${{ gitea.run_id }} emotion-female-digital-video:${{ gitea.run_id }}
- run: echo "🍏 This job's status is ${{ job.status }}." - run: echo "🍏 This job's status is ${{ job.status }}."