diff --git a/.github/workflows/devel.yml b/.github/workflows/devel.yml index af57ea1f3b..5e18c09ac0 100644 --- a/.github/workflows/devel.yml +++ b/.github/workflows/devel.yml @@ -3,7 +3,7 @@ name: "devel" on: push: branches: - - AAE-* + - AAE-12037 env: BASE_REF: ${{ github.base_ref }} diff --git a/scripts/travis/release/git-tag.sh b/scripts/travis/release/git-tag.sh index 9197462020..9dc0be724b 100755 --- a/scripts/travis/release/git-tag.sh +++ b/scripts/travis/release/git-tag.sh @@ -9,7 +9,7 @@ fi; echo "git tag -a ${VERSION} -m ${VERSION}" git config --local user.name "alfresco-build" git config --local user.email "build@alfresco.com" -git tag -a ${VERSION} -m "${VERSION} [ci skip] " +# git tag -a ${VERSION} -m "${VERSION} [ci skip] " git remote rm origin GITHUB_REPO=https://$GITHUB_TOKEN:x-oauth-basic@github.com/Alfresco/alfresco-ng2-components.git git remote add origin $GITHUB_REPO @@ -17,7 +17,11 @@ git remote add origin $GITHUB_REPO if [[ "$1" == "--dryrun" ]]; then echo "dry run"; git tag | grep "${VERSION}" - git checkout origin/develop + git switch -c AAE-12037-dev + touch dev.test + git add dev.test + git commit -m "add dev.test" + git push origin AAE-12037-dev else echo "LIVE!" # git push origin --tags