Skip to content

Commit 8d1af8f

Browse files
committed
Problem is we need to build the dist and afterwards remove all the packages again
1 parent dc1446d commit 8d1af8f

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/autoconf-check.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,36 @@ on:
77
- '[0-9]+.[0-9]+'
88

99
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+
runs-on: ubuntu-latest
31+
steps:
32+
- name: Download Artifact
33+
uses: actions/download-artifact@v3
34+
with:
35+
name: my-artifact
36+
37+
- name: Display File Content
38+
run: cat hello.txt
39+
1040
debian-family:
1141
strategy:
1242
matrix:

0 commit comments

Comments
 (0)