We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4814f3b commit cb31e6fCopy full SHA for cb31e6f
.github/workflows/practice2.yml
@@ -0,0 +1,12 @@
1
+name: commit_checkout
2
+on: [push]
3
+jobs:
4
+ external-workflow:
5
+ runs-on: ubuntu-latest
6
+ steps:
7
+ - uses: actions/checkout@v4
8
+ with:
9
+ repository: abystoma/external-workflow
10
+ ref: 3eb718710f20d7df6874acdc41e189a2ae4182f5
11
+ - name: Greetings
12
+ run: echo "$(<greeting.txt)"
.github/workflows/upload_file.yml
@@ -8,6 +8,7 @@ jobs:
- name: Download File
run: wget https://github.com/pitycycy/example-github-actions-helloworld/raw/refs/heads/main/hello.txt
# 这将从您的工作流中上传工件,且允许您在工作流完成后在作业之间共享数据并存储数据
+ # 你可以在 https://github.com/pitycycy/example-github-actions-helloworld 中的 Actions 选项卡中查看文件
- uses: actions/upload-artifact@v4
13
with:
14
name: my-artifact # 文件名称
0 commit comments