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 76c4eab commit d9f29daCopy full SHA for d9f29da
.github/workflows/autoconf-check.yml
@@ -7,6 +7,36 @@ on:
7
- '[0-9]+.[0-9]+'
8
9
jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
+ container:
13
+ image: domjudge/gitlabci:24.04
14
+ steps:
15
+ - name: Checkout Code
16
+ uses: actions/checkout@v3
17
+ # Bouw de `make dist`
18
+
19
+ - name: Create a File
20
+ run: echo "Hello from the build job!" > hello.txt
21
22
+ - name: Upload Artifact
23
+ uses: actions/upload-artifact@v3
24
+ with:
25
+ name: my-artifact
26
+ path: hello.txt
27
28
+ deploy:
29
+ needs: build
30
31
32
+ - name: Download Artifact
33
+ uses: actions/download-artifact@v3
34
35
36
37
+ - name: Display File Content
38
+ run: cat hello.txt
39
40
debian-family:
41
strategy:
42
matrix:
0 commit comments