Skip to content

Commit

Permalink
Problem is we need to build the dist and afterwards remove all the pa…
Browse files Browse the repository at this point in the history
…ckages again
  • Loading branch information
vmcj committed Mar 2, 2025
1 parent 76c4eab commit d9f29da
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/autoconf-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,36 @@ on:
- '[0-9]+.[0-9]+'

jobs:
build:
runs-on: ubuntu-latest
container:
image: domjudge/gitlabci:24.04
steps:
- name: Checkout Code
uses: actions/checkout@v3
# Bouw de `make dist`

- name: Create a File
run: echo "Hello from the build job!" > hello.txt

- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: my-artifact
path: hello.txt

deploy:
needs: build
runs-on: ubuntu-latest
steps:
- name: Download Artifact
uses: actions/download-artifact@v3
with:
name: my-artifact

- name: Display File Content
run: cat hello.txt

debian-family:
strategy:
matrix:
Expand Down

0 comments on commit d9f29da

Please sign in to comment.