Merge pull request #81 from kyma-project/workflow-korifi #27
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run-On-Kyma | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
workflow_dispatch: | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_NAME: ${{ github.repository }} | |
V_KORIFI: '0.11.2' | |
jobs: | |
build: | |
runs-on: [ self-hosted ] | |
permissions: | |
contents: read | |
packages: write | |
attestations: write | |
id-token: write | |
steps: | |
- uses: actions/checkout@v3 | |
- name: go vet lint | |
run: make vet lint | |
- name: Log in to the Container registry | |
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- 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: 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: | | |
../scripts/create-korifi-release.sh ${{ env.V_KORIFI }} | |
- name: docker build | |
run: make docker-build | |
- name: docker-push | |
run: make docker-push | |
- name: install kustomize cli | |
run: make kustomize | |
- name: install istio | |
run: make install-istio | |
- name: install-crds | |
run: make install | |
- name: deploy | |
run: make deploy | |