Skip to content

Commit

Permalink
Merge pull request #1878 from VisActor/release/1.8.3
Browse files Browse the repository at this point in the history
[Auto release] release 1.8.3
  • Loading branch information
xile611 authored Jan 2, 2024
2 parents e3eb73f + b5f2871 commit d85ff07
Show file tree
Hide file tree
Showing 209 changed files with 11,245 additions and 8,604 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/hotfix-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag: v${{ steps.package-version.outputs.current_version }}
commit: main
commit: ${{ github.ref_name }}
prerelease: false
body: |
${{ steps.changelog.outputs.markdown }}
Expand Down
13 changes: 9 additions & 4 deletions .github/workflows/release-changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,14 @@ jobs:
- name: Install rush
run: node common/scripts/install-run-rush.js install --bypass-policy

- name: Create branch
run: |
git status
git fetch origin develop:develop
git checkout develop
git status
git checkout -b docs/generate-changelog-${{ github.event.release.tag_name }}
- name: generate changelog
id: generate-changelog
uses: xile611/collect-release-changelog@main
Expand All @@ -42,11 +50,8 @@ jobs:
tag_name: ${{github.event.release.tag_name}}
file_name: changelog.md

- name: Create branch
- name: Push branch
run: |
git status
git checkout -b docs/generate-changelog-${{ github.event.release.tag_name }}
# Make any necessary changes
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 }}
Expand Down
5 changes: 4 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,8 @@
"editor.tabSize": 2,
"editor.detectIndentation": false,
// Typescript
"typescript.preferences.importModuleSpecifier": "project-relative"
"typescript.preferences.importModuleSpecifier": "project-relative",
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}
Loading

0 comments on commit d85ff07

Please sign in to comment.