-
Notifications
You must be signed in to change notification settings - Fork 0
59 lines (50 loc) · 1.42 KB
/
image.yml
File metadata and controls
59 lines (50 loc) · 1.42 KB
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
name: Image
on:
workflow_call:
inputs:
path:
required: true
type: string
tag:
required: true
type: string
permissions:
contents: read
packages: write
env:
IMAGE_AUTHOR: mentalfs
IMAGE_NAME: linuxserver-mods
jobs:
image:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Setup Docker buildx
uses: docker/setup-buildx-action@v4
with:
buildkitd-flags: --debug
- name: Log into registry
if: ${{ github.ref == 'refs/heads/main' }}
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@v6
with:
images: ghcr.io/${{ env.IMAGE_AUTHOR }}/${{ env.IMAGE_NAME }}:${{ inputs.tag }}
- name: Build Docker image and push it
id: build-and-push
uses: docker/build-push-action@v7
with:
context: .
build-args: MOD=${{ inputs.path }}
tags: ghcr.io/${{ env.IMAGE_AUTHOR }}/${{ env.IMAGE_NAME }}:${{ inputs.tag }}
labels: ${{ steps.meta.outputs.labels }}
provenance: false
push: ${{ github.ref == 'refs/heads/main' }}
cache-from: type=gha
cache-to: type=gha,mode=max