[ACA-4649] fix gha checks

This commit is contained in:
Denys Vuika
2023-03-06 17:33:39 -05:00
committed by GitHub
parent b937e23281
commit 483af3165c
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -21,11 +21,11 @@ runs:
- name: publish tag
shell: bash
run: |
if [[ ${{ inputs.branch_name }} == "master" ]]; then
if [[ "${{ inputs.branch_name }}" == "master" ]]; then
VERSION=$(jq -cr '.version' < package.json)
echo "git tag -a ${VERSION} -m ${VERSION}"
if [[ ${{ inputs.dry-run }} == false ]]; then
if [[ "${{ inputs.dry-run }}" == "false" ]]; then
git tag -a ${VERSION} -m "${VERSION} [ci skip] "
git remote rm origin
GITHUB_REPO=https://${{ inputs.github_token }}:x-oauth-basic@github.com/Alfresco/alfresco-content-app.git