Skip to content

Commit

Permalink
chore: fix aws ami build action
Browse files Browse the repository at this point in the history
  • Loading branch information
fd0r committed Jan 18, 2024
1 parent 14cd5ed commit 235cd08
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/publish_aws_ami.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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}}
Expand All @@ -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
Expand Down Expand Up @@ -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" \
Expand Down

0 comments on commit 235cd08

Please sign in to comment.