Skip to content

Remove required tenant prompt when initializing (CASMPET-6649) #19

Remove required tenant prompt when initializing (CASMPET-6649)

Remove required tenant prompt when initializing (CASMPET-6649) #19

Workflow file for this run

name: Promote build to a release (stable)
on:
push:
tags:
- 'v?[0-9]+.[0-9]+.[0-9]+'
- 'v?[0-9]+.[0-9]+.[0-9]+.post[0-9]+'
workflow_dispatch:
env:
STREAM: stable
jobs:
Promote:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Jfrog setup
uses: jfrog/setup-jfrog-cli@v3
env:
JF_URL: https://artifactory.algol60.net
JF_USER: ${{ secrets.ARTIFACTORY_ALGOL60_USERNAME }}
JF_ACCESS_TOKEN: ${{ secrets.ARTIFACTORY_ALGOL60_TOKEN }}
- uses: ./.github/actions/prepare-artifacts
with:
STREAM: ${{ env.STREAM }}
- uses: ncipollo/release-action@v1
with:
allowUpdates: true # if the job is re-ran to catch missed artifacts, allow updates
generateReleaseNotes: true
artifacts: ${{ env.DIR_UPLOAD }}/*
prerelease: false
makeLatest: true