Skip to content

Merge remote-tracking branch 'upstream/master' #13

Merge remote-tracking branch 'upstream/master'

Merge remote-tracking branch 'upstream/master' #13

Workflow file for this run

name: ALL release
on: [push, pull_request]
jobs:
release:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Builder focal image setup
run: sudo docker build -t cl-repro-focal - < contrib/reprobuild/Dockerfile.focal
- name: Builder jammy image setup
run: sudo docker build -t cl-repro-jammy - < contrib/reprobuild/Dockerfile.jammy
- name: Builder noble image setup
run: sudo docker build -t cl-repro-noble - < contrib/reprobuild/Dockerfile.noble
- name: Building using the builder image
run: ./tools/build-release.sh bin-Fedora bin-Ubuntu
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: clightning-${{ github.sha }}-all-releases
path: release/*.*
if-no-files-found: error
retention-days: 7
- name: Download artifacts
uses: actions/download-artifact@v4
with:
name: clightning-${{ github.sha }}-all-releases