-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
61 lines (55 loc) · 1.47 KB
/
action-container.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
61
name: "Build the action container"
on:
release:
types:
- published
push:
branches:
- main
paths:
- '.github/workflows/action-container.yml'
- 'custom_components/**'
- 'action/**'
pull_request:
branches:
- main
paths:
- '.github/workflows/action-container.yml'
- 'custom_components/**'
- 'action/**'
concurrency:
group: container-build-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build
runs-on: ubuntu-latest
permissions:
packages: write
steps:
- uses: actions/[email protected]
- name: Login to GitHub Container Registry
uses: docker/[email protected]
if: ${{ github.event_name != 'pull_request' }}
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Docker metadata
id: meta
uses: docker/[email protected]
with:
images: |
ghcr.io/${{ github.repository_owner }}/action
tags: |
type=ref,event=branch
type=semver,pattern={{version}}
type=sha
- name: Build and push
uses: docker/[email protected]
with:
context: .
file: action/Dockerfile
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}