-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
move frontend-push-image-to-registry to file
- Loading branch information
Showing
2 changed files
with
82 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
on: | ||
workflow_call: | ||
inputs: | ||
container-registry: | ||
required: true | ||
type: string | ||
container-image-name: | ||
required: true | ||
type: string | ||
container-image-version: | ||
required: true | ||
type: string | ||
run-id: | ||
required: true | ||
type: string | ||
|
||
jobs: | ||
frontend-push-image-to-registry: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
version: ${{ steps.set-version.outputs.version }} | ||
steps: | ||
- uses: actions/cache@v4 | ||
with: | ||
path: /tmp/images | ||
key: docker-frontend-images-cache-${{ inputs.run-id }} | ||
restore-keys: docker-frontend-images-cache-${{ inputs.run-id }} | ||
- name: load image | ||
shell: bash | ||
run: docker load -i /tmp/images/frontend-image.tar | ||
- name: Log into container registry | ||
# Third-party action, pin to commit SHA! | ||
# See https://docs.github.com/en/actions/security-guides/security-hardening-for-github-actions | ||
uses: docker/login-action@7ca345011ac4304463197fac0e56eab1bc7e6af0 | ||
with: | ||
registry: ${{ inputs.container-registry }} | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Publish backend container image | ||
run: docker push ${{ inputs.container-registry }}/${{ inputs.container-image-name }}-frontend:${{ inputs.container-image-version }} | ||
- name: Install cosign | ||
# Third-party action, pin to commit SHA! | ||
# See https://docs.github.com/en/actions/security-guides/security-hardening-for-github-actions | ||
uses: sigstore/cosign-installer@e11c0892438d2c0a48e49dee376e4883f10f2e59 | ||
- name: Sign the published Docker image | ||
run: cosign sign --yes ${{ inputs.container-registry }}/${{ inputs.container-image-name }}-frontend:${{ inputs.container-image-version }} | ||
- name: Download cosign vulnerability scan record | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: "vuln-frontend.json" | ||
- name: Attest vulnerability scan | ||
run: cosign attest --yes --replace --predicate vuln-frontend.json --type vuln ${{ inputs.container-registry }}/${{ inputs.container-image-name }}-frontend:${{ inputs.container-image-version }} | ||
- id: set-version | ||
run: echo "version=$CONTAINER_IMAGE_VERSION" >> "$GITHUB_OUTPUT" | ||
- name: Send status to Slack | ||
# Third-party action, pin to commit SHA! | ||
# See https://docs.github.com/en/actions/security-guides/security-hardening-for-github-actions | ||
uses: digitalservicebund/notify-on-failure-gha@814d0c4b2ad6a3443e89c991f8657b10126510bf # v1.5.0 | ||
if: ${{ failure() && github.ref == 'refs/heads/main' }} | ||
with: | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters