Skip to content

Commit 313f788

Browse files
committed
Add action to experiment artifacts
1 parent 3a9b0d8 commit 313f788

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Dummy Action
2+
3+
on:
4+
pull_request:
5+
branches: ["master"]
6+
workflow_dispatch:
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- name: dowload-art
14+
uses: actions/download-artifact@v4
15+
with:
16+
name: master_sha
17+
path: master_sha.txt
18+
19+
- name: print_artifact_sha
20+
run: |
21+
value=`cat master_sha.txt'
22+
echo "result: $value"
23+

0 commit comments

Comments
 (0)