-
Notifications
You must be signed in to change notification settings - Fork 34
42 lines (39 loc) · 1.07 KB
/
release.yaml
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
---
name: Release
on:
push:
tags:
- 'v*'
env:
IMAGE_NAME: lfedge/adam
jobs:
release:
runs-on: ubuntu-20.04
permissions:
packages: write
contents: read
attestations: write
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.RELEASE_DOCKERHUB_ACCOUNT }}
password: ${{ secrets.RELEASE_DOCKERHUB_TOKEN }}
- name: Build and push to Dockerhub
id: docker_build
uses: docker/build-push-action@v5
with:
platforms: linux/amd64,linux/arm64
push: true
tags: |
${{env.IMAGE_NAME}}:${{ github.ref_name }}
${{env.IMAGE_NAME}}:latest
ghcr.io/${{ github.repository_owner }}/adam:${{ github.ref_name }}
ghcr.io/${{ github.repository_owner }}/adam:latest