Skip to content

Commit f239144

Browse files
committed
workflow tests
1 parent 7166008 commit f239144

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/build.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Build and Store Artifact
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout repo
10+
uses: actions/checkout@v4
11+
12+
- name: Build project
13+
run: |
14+
mkdir output
15+
echo "Hello World!" > output/result.txt
16+
17+
- name: Upload artifact
18+
uses: actions/upload-artifact@v4
19+
with:
20+
name: build-output
21+
path: output/

0 commit comments

Comments
 (0)