Skip to content

adding a test file to debug this #1

adding a test file to debug this

adding a test file to debug this #1

Workflow file for this run

name: Docker Test Workflow
on:
push:
branches:
- helm-tagging5
jobs:
update-images:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Update images in staging (Helm)
env:
GITHUB_SHA: ${{ github.sha }}
run: |
DOCKER_TAG=${GITHUB_SHA::7}
curl -L \
-X POST \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer ${{ secrets.MANIFESTS_WORKFLOW_TOKEN }}" \
-H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/cds-snc/notification-manifests/dispatches \
-d "{\"event_type\":\"update-docker-image\",\"client_payload\":{\"component\":\"API\",\"docker_tag\":\"$DOCKER_TAG\"}}"