From 1d6c229f5dcde31d0c77eaa10c3224dce96e00bf Mon Sep 17 00:00:00 2001 From: hiento09 <136591877+hiento09@users.noreply.github.com> Date: Sat, 14 Oct 2023 11:49:26 +0000 Subject: [PATCH] Fix publish plugin point to wrong branch --- .github/workflows/publish-plugin-core.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-plugin-core.yml b/.github/workflows/publish-plugin-core.yml index a0e015666..9614a8759 100644 --- a/.github/workflows/publish-plugin-core.yml +++ b/.github/workflows/publish-plugin-core.yml @@ -61,6 +61,6 @@ jobs: git config --global user.name "Service Account" git add plugin-core/package.json git commit -m "${GITHUB_REPOSITORY}: Update tag build $version" - git -c http.extraheader="AUTHORIZATION: bearer ${{ secrets.PAT_SERVICE_ACCOUNT }}" push origin HEAD:feat/#306-plugin-core-module + git -c http.extraheader="AUTHORIZATION: bearer ${{ secrets.PAT_SERVICE_ACCOUNT }}" push origin HEAD:main git tag -a plugin-core-$version -m "${GITHUB_REPOSITORY}: Update tag build $version for plugin-core" git -c http.extraheader="AUTHORIZATION: bearer ${{ secrets.PAT_SERVICE_ACCOUNT }}" push origin plugin-core-$version