Keep the owner:group of the one downloading the tarball #2777
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check autoconf | |
on: | |
merge_group: | |
pull_request: | |
branches: | |
- main | |
- '[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: | |
version: [jammy, focal, rolling] | |
os: [ubuntu] | |
releaseBranch: | |
- ${{ contains(github.ref, 'gh-readonly-queue') }} | |
exclude: | |
- releaseBranch: false | |
include: | |
- os: debian | |
version: stable | |
- os: debian | |
version: testing | |
runs-on: ubuntu-latest | |
env: | |
DEBIAN_FRONTEND: noninteractive | |
TZ: Etc/UTC | |
container: | |
image: ${{ matrix.os }}:${{ matrix.version }} | |
steps: | |
- name: Install git so we get the .github directory | |
run: apt-get update; apt-get install -y git | |
- uses: actions/checkout@v4 | |
- name: Setup image and run bats tests | |
run: .github/jobs/configure-checks/setup_configure_image.sh |