mrbbbaixue 01ca900965
Some checks failed
Gitea Actions 示例 / example (push) Failing after 1s
1
2025-04-29 11:22:00 +08:00

24 lines
505 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

name: Gitea Actions 示例
on:
push:
branches:
# 在master分支上有push时运行
- windows
jobs:
example:
runs-on: windows-latest
steps:
- name: 检出代码
uses: https://git.ra3battle.cn/actions/checkout@v4
- name: 输出README内容
run: cat README.md
- name: 上传Artifacts
uses: https://git.ra3battle.cn/actions/upload-artifact
with:
name: example-readme
path: README.md