forked from MatthewVance/unbound-docker
-
Notifications
You must be signed in to change notification settings - Fork 1
61 lines (54 loc) · 1.98 KB
/
Copy pathdocker.yml
File metadata and controls
61 lines (54 loc) · 1.98 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
60
61
# Copyright © 2025 Securepoint GmbH. All rights reserved.
#
# This source code includes both proprietary and open-source components.
# Proprietary portions of this code are copyrighted by Securepoint GmbH
# and may not be used, reproduced, or distributed without explicit written permission.
#
# Open-source components are provided under their respective license terms,
# which are detailed in the associated files or within the project directory.
# For access to these license documents, please visit our website or the specific project directory.
#
# Securepoint GmbH assumes no liability for damages or legal infringements resulting from unauthorized use of this code.
# For further information or licensing inquiries, please contact security@securepoint.de or call us at +49 4131 24010.
name: Release
on:
push:
tags:
- '*.*.*'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: |
ghcr.io/securepoint/${{ github.event.repository.name }}
tags: |
type=schedule
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
- name: Docker Login
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.NPM_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
platforms: linux/amd64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
context: ./${{ github.ref_name }}