We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d493f39 commit e86a234Copy full SHA for e86a234
1 file changed
.github/workflows/test.yaml
@@ -7,10 +7,22 @@ jobs:
7
runs-on: self-hosted
8
9
steps:
10
+ - name: Test actions/checkout
11
+ uses: actions/checkout@v4
12
+
13
- name: CPU info
14
run: |
15
uname -m
16
cat /proc/cpuinfo
17
18
- name: OS info
19
run: cat /etc/os-release
20
21
+ - name: Crete a text file
22
+ run: echo 123 > file.txt
23
24
+ - name: Test actions/upload-artifact
25
+ uses: actions/upload-artifact@v4
26
+ with:
27
+ name: file
28
+ path: file.txt
0 commit comments