-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (49 loc) · 1.38 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: Production release
on:
push:
tags:
- '*'
env:
MM_NOTIFICATION_CHANNEL: 'bso-bot'
jobs:
publish-ghcr:
name: Docker image
runs-on: ubuntu-latest
steps:
- name: 🏁 Checkout
uses: actions/checkout@v3
- name: 🔑 Login docker
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: Release new version
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 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 }}
notify:
needs: release
if: always()
runs-on: ubuntu-latest
steps:
- uses: dataesr/mm-notifier-action@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN}}
mattermost_channel: ${{ env.MM_NOTIFICATION_CHANNEL}}
mattermost_webhook_url: ${{ secrets.MATTERMOST_WEBHOOK_URL }}