-
Notifications
You must be signed in to change notification settings - Fork 83
53 lines (46 loc) · 1.55 KB
/
publish.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
name: Publish Release
on:
workflow_dispatch:
inputs:
version_bump:
description: 'Version bump (major, minor, patch)'
required: true
default: 'patch'
jobs:
validate-input:
runs-on: ubuntu-latest
steps:
- name: Validate input
id: validate
run: |
if [[ "${{ github.event.inputs.version_bump }}" != "major" && "${{ github.event.inputs.version_bump }}" != "minor" && "${{ github.event.inputs.version_bump }}" != "patch" ]]; then
echo "Invalid input for version_bump. Please provide 'major', 'minor', or 'patch'."
exit 1
fi
release:
needs: validate-input
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- id: release
uses: rymndhng/release-on-push-action@v0.28.0
with:
bump_version_scheme: ${{ github.event.inputs.version_bump }}
use_github_release_notes: true
tag_prefix: v
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v4
with:
platforms: linux/amd64,linux/arm64
push: true
tags: tesla/fleet-telemetry:latest,tesla/fleet-telemetry:${{ steps.release.outputs.version }}