Skip to content

Commit

Permalink
create korifi release artifacts in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
szeort committed Aug 13, 2024
1 parent a055202 commit 444344e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/build-korifi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,15 @@ jobs:
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: .github.tools.sap/unified-runtime/korifi-trinity/
run: |
run: ./scripts/create-korifi-release.sh ${{ env.V_KORIFI }}

1 change: 1 addition & 0 deletions scripts/create-korifi-release.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/usr/bin/env bash

set -x
set -euo pipefail

VERSION=${1:-}
Expand Down

0 comments on commit 444344e

Please sign in to comment.