Skip to content

Commit cf94ce5

Browse files
author
Thanh Nguyen
committed
Test workflow release 0432pm
1 parent 7c147db commit cf94ce5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
runs-on: ubuntu-latest
4848
if: |
4949
github.event.pull_request.merged == true
50-
needs: [ 'ReleaseDryRun' ]
50+
needs: [ ReleaseDryRun ]
5151
permissions:
5252
contents: write # to be able to publish a GitHub release
5353
outputs:
@@ -88,19 +88,19 @@ jobs:
8888
git config --global user.email "<>"
8989
git config --global user.name "CI Build"
9090
git commit -am "Update ${FILE_CHANGELOG} and ${FILE_MODULE} for new version ${VERSION}"
91-
# git push origin ${BRANCH_TO_RELEASE}
91+
echo FIXME git push origin ${BRANCH_TO_RELEASE}
9292
9393
echo ========== tag ==========
9494
git tag -f -a "${TAG_PREFIX}${VERSION}" -m "Release ${TAG_PREFIX}/v${VERSION}"
95-
# git push origin "${TAG_PREFIX}${VERSION}" -f
95+
echo FIXME git push origin "${TAG_PREFIX}${VERSION}" -f
9696
echo "✅ Done."
9797
else
9898
echo "❎ SKIPPED."
9999
fi
100100
101101
MergeToMain:
102102
runs-on: ubuntu-latest
103-
needs: [ 'Release' ]
103+
needs: [ Release ]
104104
permissions:
105105
pull-requests: write # to be able to create PRs or comment on released PRs
106106
steps:

0 commit comments

Comments
 (0)