superlint/.github/workflows/deploy-release.yml

125 lines
4.7 KiB
YAML
Raw Normal View History

2019-11-08 09:31:16 -05:00
---
name: Deploy super-linter release container images
2019-11-08 09:31:16 -05:00
2019-11-08 09:39:18 -05:00
on:
release:
2022-03-25 11:20:52 -04:00
types: [published]
workflow_dispatch:
inputs:
release_version:
description: 'version to release. Ex: v4.3.2'
required: true
default: 'v'
2019-11-08 09:31:16 -05:00
jobs:
build:
name: Deploy container image - Release
2019-11-08 09:31:16 -05:00
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
images:
- container-image-id-prefix: slim-
deployment-environment-identifier: Release-SLIM
- container-image-id-prefix: ""
deployment-environment-identifier: Release
2021-11-15 11:25:36 -05:00
timeout-minutes: 60
2019-11-08 09:31:16 -05:00
steps:
- name: Setup Docker BuildX
uses: docker/setup-buildx-action@v2.0.0
2020-12-04 18:32:48 -05:00
- name: Login to DockerHub
uses: docker/login-action@v2.0.0
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
2020-08-20 13:58:11 -04:00
- name: Login to GitHub Container Registry
uses: docker/login-action@v2.0.0
with:
registry: ghcr.io
username: ${{ secrets.GCR_USERNAME }}
password: ${{ secrets.GCR_TOKEN }}
- name: Get current release identifier
# shellcheck disable=SC2062
run: |
echo "RELEASE_VERSION=$(echo ${{ github.event.release.name }} \
| grep -E -o "v[[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+")" \
>> "${GITHUB_ENV}"
2022-03-25 11:20:52 -04:00
if [ -z "${RELEASE_VERSION}" ]; then
echo "No release version found in environment, using input..."
echo "RELEASE_VERSION=${{ github.event.inputs.release_version }}" \
>> "${GITHUB_ENV}"
fi
- name: Start deployment for the ${{ matrix.images.deployment-environment-identifier }} environment
uses: bobheadxi/deployments@v1.3.0
id: deployment
with:
step: start
token: ${{ secrets.GITHUB_TOKEN }}
env: ${{ matrix.images.deployment-environment-identifier }}
# We don't rebuild the image to avoid that the latest tag and the release tags don't point to what the release tag is pointing to.
# Instead, we pull the latest image and tag it.
- name: Add release tags and push image
uses: akhilerm/tag-push-action@v2.0.0
with:
src: ghcr.io/github/super-linter:${{ matrix.images.container-image-id-prefix }}latest
dst: |
github/super-linter:${{ matrix.images.container-image-id-prefix }}v4
github/super-linter:${{ matrix.images.container-image-id-prefix }}${{ env.RELEASE_VERSION }}
ghcr.io/github/super-linter:${{ matrix.images.container-image-id-prefix }}v4
ghcr.io/github/super-linter:${{ matrix.images.container-image-id-prefix }}${{ env.RELEASE_VERSION }}
- name: Update the deployment status for the ${{ matrix.images.deployment-environment-identifier }} environment
uses: bobheadxi/deployments@v1.3.0
if: always()
with:
step: finish
token: ${{ secrets.GITHUB_TOKEN }}
status: ${{ job.status }}
deployment_id: ${{ steps.deployment.outputs.deployment_id }}
env: ${{ steps.deployment.outputs.env }}
2021-05-25 15:07:27 -04:00
env_url: https://github.com/github/super-linter/releases/tag/${{ env.RELEASE_VERSION }}
- name: Create a GitHub issue on failure
if: failure()
uses: actions/github-script@v6
id: create-issue
with:
# https://octokit.github.io/rest.js/v18#issues-create
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
const create = await github.rest.issues.create({
owner: context.repo.owner,
repo: context.repo.repo,
title: "Failed to deploy release to production",
2021-11-12 12:02:28 -05:00
body: "Automation has failed us! Failed to push release ${{ env.RELEASE_VERSION }}\nMore information can be found at:\n - ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
})
console.log('create', create)
return create.data.number
- name: Assign admins to the issue created on failure
uses: actions/github-script@v6
if: failure()
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
github.rest.issues.addAssignees({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: "${{ steps.create-issue.outputs.result }}",
assignees: [
'admiralawkbar',
2022-01-06 12:00:13 -05:00
'lindluni',
'IAmHughes',
'nemchik',
'Hanse00',
'GaboFDC',
'ferrarimarco'
]
})