1027
All checks were successful
Sequential Workflows / job_a (push) Successful in 14s
Sequential Workflows / job_b (push) Successful in 2s
Sequential Workflows / job_c (push) Successful in 4s

This commit is contained in:
298977887 2024-10-27 19:41:56 +08:00
parent 4ff121f32c
commit 4a69484d32
2 changed files with 23 additions and 3 deletions

View File

@ -1,9 +1,9 @@
name: Workflow A
on:
push:
branches:
- main
#push:
# branches:
# - main
jobs:
job_a:

View File

@ -12,6 +12,26 @@ jobs:
- name: Run Workflow A
run: echo "Running Workflow A"
- name: Clone source code # 步骤的名称
env:
REPO_URL: https://github.com/coolsnowwolf/lede # 仓库的URL地址
REPO_BRANCH: master # 需要克隆的分支名
run: |
git clone --depth 1 $REPO_URL -b $REPO_BRANCH openwrt
#显示当前路径
- name: Show current path
run: |
pwd
#显示当前用户
- name: Show current user
run: |
whoami
#显示当前目录
- name: Show current directory
run: |
ls -l
job_b:
runs-on: ubuntu-latest
needs: job_a # 等待 job_a 完成