generated from kyma-project/template-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (40 loc) · 1.23 KB
/
build-korifi.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
name: Build-Korifi-Trinity
on:
workflow_dispatch:
env:
REGISTRY: ghcr.io
V_KORIFI: '0.11.2'
IMAGE_NAME: ${{ github.repository }}
jobs:
build:
runs-on: [ self-hosted ]
permissions:
contents: read
packages: write
attestations: write
id-token: write
steps:
- name: 'Checkout Korifi-Trinity'
uses: actions/checkout@v3
with:
repository: unified-runtime/korifi-trinity
ref: v${{ env.V_KORIFI }}
github-server-url: 'https://github.tools.sap'
token: ${{ secrets.KORIFI_TRINITY_TOKEN }}
path: '.korifi'
- name: Log in to the Container registry
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Create korifi release artifacts
env:
VERSION: ${{ env.V_KORIFI }}
DOCKER_REGISTRY: ${{ env.REGISTRY }}
DOCKER_REGISTRY_USER: ${{ github.actor }}
DOCKER_REGISTRY_PASS: ${{ secrets.GITHUB_TOKEN }}
shell: bash
working-directory: '.korifi'
run: |
run: ../scripts/create-korifi-release.sh ${{ env.V_KORIFI }}