Skip to content

[release] version 0.0.41 #4

[release] version 0.0.41

[release] version 0.0.41 #4

Workflow file for this run

name: Production release
on:
push:
tags:
- '*'
env:
MM_NOTIFICATION_CHANNEL: bots
jobs:
publish-ghcr:
name: Build & publish Docker image
runs-on: ubuntu-latest
steps:
- name: 🏁 Checkout
uses: actions/checkout@v4
- name: 🔑 Login ghcr.io
run: docker login ghcr.io -u ${{ github.actor }} -p ${{ secrets.GITHUB_TOKEN }}
- name: 🐋 Build Docker image
run: make docker-build
- name: 📦 Push Docker image
run: make docker-push
release:
name: Create new release
runs-on: ubuntu-latest
needs: publish-ghcr
steps:
- name: 🏁 Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: 🏷️ Get tag
id: tag
run: echo "tag=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
- name: 📦 Create release
uses: softprops/action-gh-release@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.tag.outputs.tag }}
name: ${{ steps.tag.outputs.tag }}
notify:
needs: release
if: always()
runs-on: ubuntu-latest
steps:
- name: 📢 Notify
uses: dataesr/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN}}
mattermost_channel: ${{ env.MM_NOTIFICATION_CHANNEL}}
mattermost_webhook_url: ${{ secrets.MATTERMOST_WEBHOOK_URL }}