test cicd
Some checks failed
Build And Test / ci-flow (push) Successful in 30s
Demo / demo-ci-flow (push) Successful in 28s
Build And Test / cd-flow (push) Successful in 29s
Demo / demo-cd-flow (push) Has been cancelled

This commit is contained in:
KLxHunter 2024-12-10 16:18:17 +07:00
parent 70aec52f9c
commit 6e3b87df66
2 changed files with 4 additions and 4 deletions

View File

@ -7,7 +7,7 @@ on:
jobs:
ci-flow:
runs-on: ubuntu:latest
runs-on: ubuntu-latest
steps:
- run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!"
@ -30,7 +30,7 @@ jobs:
- run: echo "🍏 This job's status is ${{ job.status }}."
cd-flow:
runs-on: ubuntu:latest
runs-on: ubuntu-latest
needs: build
if: gitea.ref == 'refs/heads/main'
steps:

View File

@ -7,7 +7,7 @@ on:
jobs:
demo-ci-flow:
runs-on: ubuntu:latest
runs-on: ubuntu-latest
steps:
- run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!"
@ -30,7 +30,7 @@ jobs:
- run: echo "🍏 This job's status is ${{ job.status }}."
demo-cd-flow:
runs-on: ubuntu:latest
runs-on: ubuntu-latest
needs: build
if: gitea.ref == 'refs/heads/main'
steps: