Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/bug-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ jobs:
python3 -m pip install --upgrade pip --break-system-packages
python3 -m pip install setuptools --break-system-packages

- name: Install latest pnpm
run: npm install -g pnpm@10.7.0

- name: Install native deps for node-canvas (macOS)
if: runner.os == 'macOS'
run: |
Expand Down
151 changes: 0 additions & 151 deletions .github/workflows/hotfix-release.yml

This file was deleted.

129 changes: 0 additions & 129 deletions .github/workflows/pre-release.yml

This file was deleted.

7 changes: 5 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ jobs:
python3 -m pip install --upgrade pip --break-system-packages
python3 -m pip install setuptools --break-system-packages

- name: Install latest pnpm
run: npm install -g pnpm@10.7.0

- name: Install native deps for node-canvas (macOS)
if: runner.os == 'macOS'
run: |
Expand Down Expand Up @@ -135,8 +138,8 @@ jobs:
- name: Commit & Push changes
run: |
git add .
git commit -m 'build: prelease version ${{ steps.package-version.outputs.current_version }}' -n
git push origin ${{ github.ref_name }}
git commit -m 'build: prelease version ${{ steps.package-version.outputs.current_version }} [skip ci]' -n
Comment thread
xuefei1313 marked this conversation as resolved.
git push --no-verify origin ${{ github.ref_name }}

- name: Collect changelog of rush
uses: xile611/collect-rush-changlog@main
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/release-changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ jobs:
python3 -m pip install --upgrade pip --break-system-packages
python3 -m pip install setuptools --break-system-packages

- name: Install latest pnpm
run: npm install -g pnpm@10.7.0

- name: Install native deps for node-canvas (macOS)
if: runner.os == 'macOS'
run: |
Expand Down Expand Up @@ -88,8 +91,8 @@ jobs:
- name: Push branch
run: |
git add .
git commit -m "docs: generate changelog of release ${{ github.event.release.tag_name }}" -n
git push origin docs/generate-changelog-${{ github.event.release.tag_name }}
git commit -m "docs: generate changelog of release ${{ github.event.release.tag_name }} [skip ci]" -n
git push --no-verify origin docs/generate-changelog-${{ github.event.release.tag_name }}

- name: Create Pull Request
uses: dustinirving/create-pr@v1.0.2
Expand Down
Loading
Loading