From 9941e56f3a121334b514986a9dfd90cbbbba60d2 Mon Sep 17 00:00:00 2001 From: Luis Montero Date: Thu, 18 Jan 2024 11:26:56 +0100 Subject: [PATCH] chore: fix aws ami build action --- .github/workflows/publish_aws_ami.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish_aws_ami.yaml b/.github/workflows/publish_aws_ami.yaml index 13a9a455b0..01f90d6683 100644 --- a/.github/workflows/publish_aws_ami.yaml +++ b/.github/workflows/publish_aws_ami.yaml @@ -23,7 +23,6 @@ jobs: # FIXME: We still need to check that it matches a version tag # This won't work on automatically triggered based on release - name: Checkout Concrete ML Repository - if: ${{ github.event_name == 'workflow_dispatch' }} uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 with: ref: ${{ inputs.version || github.ref_name}} @@ -33,7 +32,6 @@ jobs: # To use the files and all - name: Checkout Concrete ML Repository - if: ${{ github.event_name == 'workflow_dispatch' }} uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 with: fetch-depth: 1 @@ -73,8 +71,11 @@ jobs: echo -n "${PAYLOAD}" > payload.json SIGNATURE="$(bash slab/scripts/hmac_calculator.sh payload.json '${{ secrets.JOB_SECRET }}')" + + apt update && apt upgrade curl + curl --version - curl -v -k \ + curl --fail-with-body -v -k \ -H "Content-Type: application/json" \ -H "X-Slab-Repository: ${{ github.repository }}" \ -H "X-Slab-Command: build_aws_ami" \