Aggiungi .forgejo/workflows/build-debian.yml
Some checks failed
Build Debian package / build-and-push-image (push) Failing after 1m47s
Some checks failed
Build Debian package / build-and-push-image (push) Failing after 1m47s
This commit is contained in:
commit
abebaa3301
1 changed files with 32 additions and 0 deletions
32
.forgejo/workflows/build-debian.yml
Normal file
32
.forgejo/workflows/build-debian.yml
Normal file
|
@ -0,0 +1,32 @@
|
|||
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: Install dependencies
|
||||
run: apt-get update && apt-get install -y git tar fakeroot libssl-dev libcap2-bin autoconf automake libtool build-essential debhelper
|
||||
|
||||
- name: Checkout repository
|
||||
run: git clone --recursive https://github.com/RIPE-NCC/ripe-atlas-software-probe.git
|
||||
|
||||
- name: Build Debian package
|
||||
run: ./ripe-atlas-software-probe/build-config/debian/bin/make-deb
|
||||
|
||||
- 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
|
Loading…
Add table
Add a link
Reference in a new issue