Skip to content

Commit 498744d

Browse files
authored
Merge pull request #5 from TDMinhNhat/pre-release
Merge source from pre-release into main's branch
2 parents b91f066 + 2fbcfb0 commit 498744d

35 files changed

Lines changed: 1464 additions & 225 deletions

.github/workflows/cicd.yml

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,15 @@ jobs:
2626
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
2727
gpg-passphrase: ${{ secrets.MAVEN_GPG_PASSPHRASE }}
2828

29+
- name: Install CFR locally
30+
run: |
31+
mvn install:install-file \
32+
-Dfile=libs/cfr-0.152.jar \
33+
-DgroupId=cfr \
34+
-DartifactId=cfr \
35+
-Dversion=0.152 \
36+
-Dpackaging=jar
37+
2938
- name: Debug GPG
3039
run: |
3140
echo "=== Listing GPG secret keys ==="
@@ -62,6 +71,19 @@ jobs:
6271

6372
- name: Merge pre-release -> main
6473
run: |
74+
git config user.name "TDMinhNhat [Auto]"
75+
git config user.email "tdminhnhat13092003@gmail.com"
76+
77+
# Fetch all branches
78+
git fetch origin
79+
80+
# Checkout pre-release and rebase onto main
81+
git checkout pre-release
82+
git rebase origin/main
83+
84+
# Switch to main and merge pre-release
6585
git checkout main
66-
git merge --no-ff origin/pre-release -m "Auto-merge pre-release into main"
86+
git merge --ff-only pre-release
87+
88+
# Push changes
6789
git push origin main

.idea/workspace.xml

Lines changed: 184 additions & 38 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

libs/cfr-0.152.jar

2.06 MB
Binary file not shown.

0 commit comments

Comments
 (0)