Skip to content

ui: config sentry

ui: config sentry #66

name: Build and export CAP UI image
on:
push:
branches: ["master", "dev", "qa", "test", "with-formule"]
# paths:
# - "ui/**"
# - ".github/workflows/ui-test.yml"
jobs:
build-image:
name: Build and export ui image
runs-on: ubuntu-20.04
outputs:
image-id: ${{ steps.build-ui.outputs.image-id }}
steps:
- uses: actions/checkout@v3
- name: Extract branch name
shell: bash
run: echo "BRANCH_NAME=$(echo ${GITHUB_REF#refs/heads/})" >> $GITHUB_OUTPUT
id: get_branch
- id: build-ui
name: Build and export
uses: cern-sis/gh-workflows/.github/actions/docker-build@v6.1.0
with:
dockerfile: ./docker/harbour/ui/Dockerfile
platforms: linux/amd64,linux/arm64
image: cern-sis/cap-ui
registry: registry.cern.ch
cache: false
tags: ${{ steps.get_branch.outputs.BRANCH_NAME }}
username: ${{ secrets.HARBOR_USERNAME }}
password: ${{ secrets.HARBOR_PASSWORD }}
build-args: |

Check failure on line 37 in .github/workflows/harbour-build-ui.yml

View workflow run for this annotation

GitHub Actions / Build and export CAP UI image

Invalid workflow file

The workflow is not valid. .github/workflows/harbour-build-ui.yml (Line: 37, Col: 23): Unexpected symbol: '0:7'. Located at position 12 within expression: github.sha[0:7]
SENTRY_URL=${{ secrets.CAP_SENTRY_URL }}
SENTRY_ORG=${{ secrets.CAP_SENTRY_ORG }}
SENTRY_PROJECT=${{ secrets.CAP_SENTRY_PROJECT }}
SENTRY_AUTH_TOKEN=${{ secrets.CAP_SENTRY_AUTH_TOKEN }}
SENTRY_RELEASE=${{ github.sha[0:7] }}