Switch CLN channel back to 7 on revert operation. #26 #45
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: Build with Buck | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 # Not latest, because python3.6 is not available on latest | |
# https://github.com/actions/setup-python/issues/544 | |
steps: | |
- name: Checkout repository and submodules | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Prepare artifact store | |
run: mkdir -p ./buck-out/gen | |
- name: Build cloudlinux7to8 | |
id: build | |
uses: SandakovMM/build-with-buck@v3 | |
with: | |
command: build | |
target: :cloudlinux7to8 | |
- name: Store result | |
uses: actions/upload-artifact@v3 | |
with: | |
name: cloudlinux7to8 | |
path: ./buck-out/gen/cloudlinux7to8 |