-
-
Notifications
You must be signed in to change notification settings - Fork 14
40 lines (32 loc) · 849 Bytes
/
dev.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
name: Dev
env:
GO_VERSION: ^1.23
on:
workflow_dispatch:
jobs:
docker:
name: Publish Docker :release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Login
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_PASS }}
- name: Setup Buildx
uses: docker/setup-buildx-action@v3
- name: Meta
id: meta
uses: docker/metadata-action@v5
with:
images: wimaha/tesla-ble-http-proxy
tags: |
type=raw,value=dev
- name: Publish
uses: docker/build-push-action@v6
with:
context: .
platforms: linux/amd64,linux/arm64,linux/arm/v6,linux/arm/v7
push: true
tags: ${{ steps.meta.outputs.tags }}