Skip to content

Commit 49f9645

Browse files
committed
check
1 parent b80e41d commit 49f9645

1 file changed

Lines changed: 37 additions & 24 deletions

File tree

.github/workflows/release.yml

Lines changed: 37 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,12 @@ jobs:
4444
make clean-generated
4545
./bin/generate.sh ${RELEASE_VERSION}
4646
47+
echo "UV VERSION"
48+
uv --version
49+
50+
echo "GIT CHANGES FROM CLEAN GENERATED"
51+
git status
52+
4753
- name: "Commit Changed Code"
4854
run: |
4955
# Code automatically generated goes into the packages directory.
@@ -57,8 +63,15 @@ jobs:
5763
echo "No changes detected after generating the code"
5864
fi
5965
66+
echo "AFTER COMMITTING CODE"
67+
git status
68+
6069
- name: "Install Project"
61-
run: make install-dev
70+
run: |
71+
make install-dev
72+
73+
echo "AFTER INSTALLING"
74+
git status
6275
6376
- name: "Install LocalStack"
6477
run: pip install localstack==${RELEASE_VERSION}
@@ -83,26 +96,26 @@ jobs:
8396
localstack logs
8497
localstack stop
8598
86-
- name: "Create the Release Commit and Tag"
87-
run: |
88-
git commit --allow-empty -m "Release: v${RELEASE_VERSION}"
89-
git tag -a "v${RELEASE_VERSION}" -m "Release: v${RELEASE_VERSION}"
90-
91-
- name: "Push the release commit and tag"
92-
run: git push --follow-tags
93-
94-
- name: "Publish Release to PyPi"
95-
env:
96-
UV_PUBLISH_TOKEN: ${{ secrets.UV_PUBLISH_TOKEN }}
97-
run: make publish
98-
99-
- name: "Create GitHub Release"
100-
env:
101-
GITHUB_TOKEN: ${{ secrets.LOCALSTACK_GITHUB_TOKEN }}
102-
run: gh release create "v${RELEASE_VERSION}" --generate-notes
103-
104-
- name: "Show Git Modifications"
105-
run: |
106-
git log --oneline -n 4
107-
git show HEAD~1
108-
git show HEAD
99+
# - name: "Create the Release Commit and Tag"
100+
# run: |
101+
# git commit --allow-empty -m "Release: v${RELEASE_VERSION}"
102+
# git tag -a "v${RELEASE_VERSION}" -m "Release: v${RELEASE_VERSION}"
103+
104+
# - name: "Push the release commit and tag"
105+
# run: git push --follow-tags
106+
107+
# - name: "Publish Release to PyPi"
108+
# env:
109+
# UV_PUBLISH_TOKEN: ${{ secrets.UV_PUBLISH_TOKEN }}
110+
# run: make publish
111+
112+
# - name: "Create GitHub Release"
113+
# env:
114+
# GITHUB_TOKEN: ${{ secrets.LOCALSTACK_GITHUB_TOKEN }}
115+
# run: gh release create "v${RELEASE_VERSION}" --generate-notes
116+
117+
# - name: "Show Git Modifications"
118+
# run: |
119+
# git log --oneline -n 4
120+
# git show HEAD~1
121+
# git show HEAD

0 commit comments

Comments
 (0)