You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sed -i'' -e "s/<AssemblyVersion>[0-9.*]\+<\/AssemblyVersion>/<AssemblyVersion>$VERSION<\/AssemblyVersion>/g" src/Directory.Build.props
sed -i'' -e "s/<AssemblyConfiguration>[\$()A-Za-z-]\+<\/AssemblyConfiguration>/<AssemblyConfiguration>${BUILD_SOURCEBRANCHNAME}<\/AssemblyConfiguration>/g" src/Directory.Build.props
- task: Docker@2
displayName: Build image
inputs:
containerRegistry: 'ghcr'
repository: $(imageName)
command: buildAndPush
Dockerfile: Dockerfile
tags: |
latest
$(Build.SourceBranchName)
$(Build.BuildNumber)
- bash: |
echo "Creating sentry release"
curl -sL https://sentry.io/get-cli/ | bash
sentry-cli releases new --finalize -p servarr-auth "${VERSION}"