-
Notifications
You must be signed in to change notification settings - Fork 3
59 lines (47 loc) · 1.53 KB
/
main.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
name: Docker Image CI - Release
permissions:
contents: write
on:
workflow_dispatch:
jobs:
CreateRelease:
runs-on: ubuntu-latest
steps:
- name: Check out the code
uses: actions/checkout@v2
- name: Extract commit SHA
id: sha
run: echo "SHORT_SHA=$(git rev-parse --short=7 ${{ github.sha }})" >> $GITHUB_ENV
- name: Dump GitHub Actions context
shell: bash
run: echo "$GITHUB_CONTEXT"
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_ACCESSTOKEN }}
- name: Build and push
uses: docker/build-push-action@v2
with:
context: .
file: ./Dockerfile
push: true
platforms: linux/amd64,linux/arm64
tags: ${{ secrets.DOCKER_USERNAME }}/repotest:${{ env.SHORT_SHA }} ,
${{ secrets.DOCKER_USERNAME }}/repotest:latest
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ env.SHORT_SHA }}
release_name: Release ${{ env.SHORT_SHA }}
draft: false
prerelease: false
body: |
Docker images built and pushed to DockerHub:
- `${{ secrets.DOCKER_USERNAME }}/teltonika-codec-to-mqtt:${{ env.SHORT_SHA }}`
- `${{ secrets.DOCKER_USERNAME }}/teltonika-codec-to-mqtt:latest`