test cicd
Some checks failed
Build And Test / ci-flow (push) Failing after 1m20s
Build And Test / cd-flow (push) Has been skipped

This commit is contained in:
KLxHunter 2024-12-10 17:34:41 +07:00
parent b453b9e23b
commit b15073e9dd
2 changed files with 4 additions and 4 deletions

View File

@ -7,7 +7,7 @@ on:
jobs:
ci-flow:
runs-on: alpine-latest
runs-on: ubuntu-22.12
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!"
@ -45,7 +45,7 @@ jobs:
run: docker network ls
cd-flow:
runs-on: alpine-latest
runs-on: ubuntu-22.12
needs: ci-flow
if: gitea.ref == 'refs/heads/main'
steps:

View File

@ -7,7 +7,7 @@ on:
jobs:
demo-ci-flow:
runs-on: ubuntu-22.04
runs-on: ubuntu-22.12
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!"
@ -32,7 +32,7 @@ jobs:
- run: echo "🍏 This job's status is ${{ job.status }}."
demo-cd-flow:
runs-on: ubuntu-22.04
runs-on: ubuntu-22.12
needs: demo-ci-flow
if: gitea.ref == 'refs/heads/main'
steps: