mirror of
https://github.com/notherealmarco/coredns-deployment.git
synced 2025-03-14 14:16:16 +01:00
Some checks failed
Build Debian package / build-and-push-image (push) Failing after 41s
32 lines
1.1 KiB
YAML
32 lines
1.1 KiB
YAML
name: Build Debian package
|
|
|
|
# Configures this workflow to run every time a change is pushed to the branch called `release`.
|
|
on:
|
|
push:
|
|
branches: ['master', 'main']
|
|
|
|
# Defines two custom environment variables for the workflow. These are used for the Container registry domain, and a name for the Docker image that this workflow builds.
|
|
env:
|
|
DISTRIBUTION: bookworm
|
|
COMPONENT: main
|
|
# USER: marco-private
|
|
|
|
# There is a single job in this workflow. It's configured to run on the latest available version of Ubuntu.
|
|
jobs:
|
|
build-and-push-image:
|
|
runs-on: docker
|
|
container:
|
|
image: catthehacker/ubuntu:act-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install dependencies
|
|
run: apt-get update && apt-get install -y build-essential debhelper
|
|
|
|
- name: Build Debian package
|
|
run: dpkg-buildpackage -us -uc -b --target-arch amd64
|
|
|
|
- name: Push to registry
|
|
run: curl --user ${{ github.actor }}:${{secrets.REGISTRY_TOKEN}} --upload-file $(ls *.deb) https://git.marcorealacci.me/api/packages/packages/debian/pool/${{env.DISTRIBUTION}}/${{env.COMPONENT}}/upload
|