From d606a92379e9ed489912e82d5319817e2a673ab6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20Casta=C3=B1o=20Arteaga?= Date: Mon, 8 Apr 2024 09:49:09 +0200 Subject: [PATCH] Add build workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Sergio CastaƱo Arteaga --- .github/workflows/build.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..59dda8c --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,24 @@ +name: Build + +on: + push + +jobs: + build: + runs-on: + labels: ubuntu-latest + container: + image: public.ecr.aws/g6m3a0y9/landscape2 + options: --user root + steps: + - name: Checkout this repository + uses: actions/checkout@v3 + + - name: Build landscape + run: | + landscape2 build \ + --settings-file ./settings.yml \ + --guide-file ./guide.yml \ + --data-file ./data.yml \ + --logos-path ./logos \ + --output-dir /tmp/landscape