-
Notifications
You must be signed in to change notification settings - Fork 154
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9afbdb2
commit 0eadccb
Showing
1 changed file
with
10 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,19 +14,19 @@ jobs: | |
with: | ||
node-version: '16.14.x' | ||
- run: npm install | ||
- run: npm install -g @vscode/vsce github-release-notes | ||
# - run: npm install -g @vscode/vsce github-release-notes | ||
- name: Read package.json verison | ||
uses: tyankatsu0105/read-package-version-actions@v1 | ||
id: package-version | ||
- name: Generate and Commit Changelog | ||
env: | ||
GREN_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
git fetch origin main | ||
git checkout main | ||
gren changelog --override | ||
git -c user.name="ole1986" -c user.email="[email protected]" commit --no-verify -m "Updated CHANGELOG.md - Github Actions" -- CHANGELOG.md | ||
git push | ||
# - name: Generate and Commit Changelog | ||
# env: | ||
# GREN_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
# run: | | ||
# git fetch origin main | ||
# git checkout main | ||
# gren changelog --override | ||
# git -c user.name="Don Jayamanne" -c user.email="[email protected]" commit --no-verify -m "Updated CHANGELOG.md - Github Actions" -- CHANGELOG.md | ||
# git push | ||
- name: vsce publish | ||
run: vsce publish -p "${{ secrets.VSCE_TOKEN }}" | ||
- name: vsce package | ||
|