Skip to content

Commit 91ec049

Browse files
authored
Merge pull request #690 from thecodacus/update-stable-workflow
fix: the creds issue in workflow
2 parents aba0fc8 + e8403fe commit 91ec049

File tree

1 file changed

+11
-14
lines changed

1 file changed

+11
-14
lines changed

.github/workflows/update-stable.yml

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,8 @@ jobs:
1515
pull-requests: read
1616

1717
steps:
18-
- uses: actions/checkout@v4
19-
with:
20-
fetch-depth: 0
21-
token: ${{ secrets.GITHUB_TOKEN }}
22-
18+
- uses: actions/checkout@v3
19+
2320
- name: Configure Git
2421
run: |
2522
git config --global user.name 'github-actions[bot]'
@@ -178,12 +175,12 @@ jobs:
178175
git tag -a "$VERSION" -m "Release $VERSION"
179176
git push origin "$VERSION"
180177
181-
- name: Create GitHub Release
182-
env:
183-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
184-
run: |
185-
VERSION="v${{ steps.bump_version.outputs.new_version }}"
186-
gh release create "$VERSION" \
187-
--title "Release $VERSION" \
188-
--notes "${{ steps.changelog.outputs.content }}" \
189-
--target stable
178+
# - name: Create GitHub Release
179+
# env:
180+
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
181+
# run: |
182+
# VERSION="v${{ steps.bump_version.outputs.new_version }}"
183+
# gh release create "$VERSION" \
184+
# --title "Release $VERSION" \
185+
# --notes "${{ steps.changelog.outputs.content }}" \
186+
# --target stable

0 commit comments

Comments
 (0)