feat: Adapt the app for the new Lenra API (#38) #85
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 Lenra app | |
on: | |
push: | |
jobs: | |
build: | |
name: Lenra build | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install Compose | |
uses: ndeloof/[email protected] | |
- run: docker-compose --version | |
- name: Install Lenra CLI | |
run: wget -c https://github.com/lenra-io/lenra_cli/releases/latest/download/lenra-linux-x86_64 -O lenra | |
- name: Make Lenra CLI executable | |
run: chmod +x lenra | |
- name: Build app | |
run: ./lenra build |