Merge remote-tracking branch 'upstream/master' #24
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: Fedora only release | |
on: [push, pull_request] | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Building using the builder image | |
run: ./tools/build-release.sh bin-Fedora-28-amd64 | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: clightning-${{ github.sha }}-fedora | |
path: release/*.tar.gz | |
if-no-files-found: error | |
retention-days: 7 | |
- name: Download artifacts | |
uses: actions/download-artifact@v3 | |
with: | |
name: clightning-${{ github.sha }}-fedora |