This commit is contained in:
威勝 張 2025-02-23 18:14:00 +08:00
parent 6a33a903f5
commit 723f817dc4
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,20 @@
name: test_CICD # 工作流的名称
# 当有代码推送到仓库的 main 分支时,这个 Actions 工作流会被触发并执行
on:
push:
branches:
- main
- develop
jobs:
build:
runs-on: iisrunner
steps:
- name: test
shell: powershell
run: |
echo "test_start"
sleep 20
echo "test_end"

View File

@ -40,4 +40,8 @@
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="6.34.0" />
</ItemGroup>
<ItemGroup>
<None Include=".gitea\workflows\build.yml" />
</ItemGroup>
</Project>