1.9.10 #243
Workflow file for this run
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
name: Production deployment | |
on: | |
push: | |
tags: | |
- 'v[0-9]+.[0-9]+.[0-9]+' | |
env: | |
DEPLOYMENT: bso-ui # Must match k8s deployment name | |
DEPLOYMENT_NAMESPACE: bso # Must match k8s deployment namespace | |
DEPLOYMENT_URL: https://bso.dataesr.ovh | |
MM_NOTIFICATION_CHANNEL: bots | |
jobs: | |
publish-ghcr: | |
name: Publish Docker image | |
runs-on: ubuntu-latest | |
steps: | |
- name: π Checkout | |
uses: actions/checkout@v3 | |
- name: π·οΈ Get tag | |
id: tag | |
run: echo "tag=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT | |
- name: π Login Docker | |
run: docker login ghcr.io -u ${{ github.actor }} -p ${{ secrets.GITHUB_TOKEN }} | |
- name: π Build Docker image | |
run: docker build -t ${{ github.repository }} . | |
- name: π¦ Push Docker image | |
run: | | |
IMAGE_ID=ghcr.io/${{ github.repository }} | |
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]') | |
docker tag ${{ github.repository }} $IMAGE_ID:${{ steps.tag.outputs.tag }} | |
docker tag ${{ github.repository }} $IMAGE_ID:latest | |
docker push $IMAGE_ID:${{ steps.tag.outputs.tag }} | |
docker push $IMAGE_ID:latest | |
release: | |
name: Create new Github release | |
runs-on: ubuntu-latest | |
needs: publish-ghcr | |
steps: | |
- name: π Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: π·οΈ Get tag | |
id: tag | |
run: echo "tag=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT | |
- name: Create changelog text | |
id: changelog | |
uses: loopwerk/tag-changelog@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
config_file: .github/config/changelog.js | |
- name: π¦ Create release | |
uses: softprops/action-gh-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ steps.tag.outputs.tag }} | |
name: ${{ steps.tag.outputs.tag }} | |
body: "${{ steps.changelog.outputs.changes }}" | |
deploy: | |
name: Update production deployment | |
runs-on: ubuntu-latest | |
needs: release | |
steps: | |
- name: Deploy to Cluster | |
id: kubectl-deploy | |
uses: dataesr/kubectl-deploy@v1.1 | |
env: | |
KUBE_CONFIG: ${{ secrets.KUBE_CONFIG_DOAD_PROD }} | |
with: | |
restart: ${{ env.DEPLOYMENT }} | |
namespace: ${{ env.DEPLOYMENT_NAMESPACE }} | |
notify: | |
needs: deploy | |
if: always() | |
runs-on: ubuntu-latest | |
steps: | |
- uses: dataesr/mm-notifier-action@v1 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN}} | |
mattermost_webhook_url: ${{ secrets.MATTERMOST_WEBHOOK_URL }} | |
mattermost_channel: ${{ env.MM_NOTIFICATION_CHANNEL}} | |
deployment_url: ${{ env.DEPLOYMENT_URL }} |