From c3c5164bd9f0262d955e77ef402a6e0e7cf7a519 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..7f2d341 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 update && sudo apt install autoreconf + - 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..ae1df78 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 update && sudo apt install autoreconf + - 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..7d25e70 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 update && sudo apt install autoreconf + - uses: actions/setup-node@v4 with: node-version: 18