Fixes after merging upstream #37
This file contains 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: ALL release | |
on: [push, pull_request] | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- 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: Building using the builder image | |
run: ./tools/build-release.sh bin-Fedora-28-amd64 bin-Ubuntu | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: clightning-${{ github.sha }}-all-releases | |
path: release/*.* | |
if-no-files-found: error | |
retention-days: 7 | |
- name: Download artifacts | |
uses: actions/download-artifact@v3 | |
with: | |
name: clightning-${{ github.sha }}-all-releases |