From 0f8ab6e89a78acd8b83261c5086f97837bc15416 Mon Sep 17 00:00:00 2001 From: 1cedsoda <29167146+1cedsoda@users.noreply.github.com> Date: Thu, 16 May 2024 10:10:47 +0200 Subject: [PATCH] install autoconf in pipeline --- .github/workflows/deploy-prod.yml | 2 ++ .github/workflows/deploy-stage.yml | 2 ++ .github/workflows/test.yml | 2 ++ 3 files changed, 6 insertions(+) diff --git a/.github/workflows/deploy-prod.yml b/.github/workflows/deploy-prod.yml index e3ada8d..f28174e 100644 --- a/.github/workflows/deploy-prod.yml +++ b/.github/workflows/deploy-prod.yml @@ -19,6 +19,8 @@ jobs: - name: Checkout repository uses: actions/checkout@v2 + - run: sudo apt install autotools + - name: Log in to the Container registry uses: docker/login-action@v1 with: diff --git a/.github/workflows/deploy-stage.yml b/.github/workflows/deploy-stage.yml index b160778..40ab5fb 100644 --- a/.github/workflows/deploy-stage.yml +++ b/.github/workflows/deploy-stage.yml @@ -26,6 +26,8 @@ jobs: - name: Checkout repository uses: actions/checkout@v2 + - run: sudo apt install autotools + - name: Log in to the Container registry uses: docker/login-action@v1 with: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2a5b986..522dcc1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,6 +14,8 @@ jobs: - name: Checkout repository uses: actions/checkout@v2 + - run: sudo apt install autotools + - uses: actions/setup-node@v4 with: node-version: 18