[ACA-4649] release workflow fixes (#3041)

* release workflow fixes

* fix release triggering on push to master

* cleanup
This commit is contained in:
Denys Vuika 2023-03-07 06:06:34 -05:00 committed by GitHub
parent 483af3165c
commit b67a73d832
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 7 deletions

View File

@ -30,11 +30,11 @@ runs:
shell: bash
run: |
if [[ "${{ inputs.branch_name }}" == "master" ]]; then
TAG_VERSION=$(grep -m1 version package.json | awk '{ print $2 }' | sed 's/[", ]//g')
TAG_VERSION=$(jq -cr '.version' < package.json)
else
TAG_VERSION=${{ inputs.branch_name }}-${{ github.run_id }}
fi
echo "TAG_VERSION=$TAG_VERSION" >> $GITHUB_ENV
- name: Publish image
shell: bash
run: ./scripts/travis/deploy/publish.sh ${{ inputs.domain }} ${{ inputs.username }} ${{ inputs.password }} $TAG_VERSION ${{ inputs.branch_name }} ${{ inputs.dry-run }}
run: ./scripts/travis/deploy/publish.sh "${{ inputs.domain }}" "$REPO_SLUG" "${{ inputs.username }}" "${{ inputs.password }}" "$TAG_VERSION" "${{ inputs.branch_name }}" "${{ inputs.dry-run }}"

View File

@ -15,6 +15,9 @@ on:
- master
- develop-patch*
- master-patch*
push:
branches:
- master
env:
APP_CONFIG_ECM_HOST: ${{ secrets.PIPELINE_ENV_URL }}
@ -37,6 +40,7 @@ env:
APP_CONFIG_OAUTH2_REDIRECT_LOGOUT: /
APP_CONFIG_OAUTH2_REDIRECT_LOGIN: /
APP_CONFIG_OAUTH2_REDIRECT_SILENT_IFRAME_URI: "{protocol}//{hostname}{:port}/assets/silent-refresh.html"
REPO_SLUG: "alfresco/alfresco-content-app"
jobs:
publish-docker-registry:

View File

@ -1,11 +1,12 @@
#!/bin/bash -e
DOMAIN="$1"
USERNAME="$2"
PASSWORD="$3"
TAG_VERSION="$4"
BRANCH_NAME="$5"
DRY_RUN="$6"
REPO_SLUG="$2"
USERNAME="$3"
PASSWORD="$4"
TAG_VERSION="$5"
BRANCH_NAME="$6"
DRY_RUN="$7"
npm ci && npm run build.release