Skip to content

Commit

Permalink
missing endline escapes
Browse files Browse the repository at this point in the history
  • Loading branch information
yamatt committed Apr 6, 2021
1 parent 5657879 commit 3e0b744
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ jobs:
registry_image_url: ${{ env.REGISTRY_URL }}/${{ env.IMAGE_NAME }}:${{ github.run_number }}
- name: Check the image is using the latest version
run: >
[ $(
[ $( \
curl \
--request GET \
--header "X-Auth-Token: ${{ secrets.SCALEWAY_SECRET_KEY }}" \
https://api.scaleway.com/functions/v1alpha2/regions/${{ env.REGION }}/containers/${{ env.CONTAINER_ID }} | \
jq -r .registry_image
) = ${{ env.REGISTRY_URL }}/${{ env.IMAGE_NAME }}:${{ github.run_number }}
jq -r .registry_image \
) = ${{ env.REGISTRY_URL }}/${{ env.IMAGE_NAME }}:${{ github.run_number }} \
]

0 comments on commit 3e0b744

Please sign in to comment.