Add GitHub Actions workflow for automated release - #153
Open
adangel wants to merge 12 commits into
Open
Conversation
adangel
force-pushed
the
doc-releasing
branch
from
September 14, 2023 19:48
10d9402 to
692e44f
Compare
adangel
marked this pull request as ready for review
September 16, 2023 08:37
Collaborator
Author
|
This is ready now, but I didn't test the new workflows.... I guess, we would need to try them out for real, to see, if they work or not. Note: the publish-release workflow needs a configured secret "VSCE_PAT" to be able to upload the extension. |
adangel
commented
Jun 27, 2025
| - Manual: Go to <https://marketplace.visualstudio.com/manage/publishers/chuckjonas> | ||
| - Using a script: | ||
| ```shell | ||
| export VSCE_PAT=.... |
Collaborator
Author
There was a problem hiding this comment.
Suggested change
| export VSCE_PAT=.... | |
| echo -n "Enter VSCE Access Token=" | |
| IFS= read -r VSCE_PAT | |
| export VSCE_PAT |
adangel
commented
May 15, 2026
| 8. Commit the changes to master branch. | ||
|
|
||
| ```shell | ||
| git add --update |
Collaborator
Author
There was a problem hiding this comment.
Suggested change
| git add --update | |
| npm run prettier | |
| git add --update |
adangel
commented
May 15, 2026
| 5. Commit the changes to master branch and create a new tag. The tag is `RELEASE_VERSION` prefixed with `v`. | ||
|
|
||
| ```shell | ||
| git add --update |
Collaborator
Author
There was a problem hiding this comment.
Suggested change
| git add --update | |
| npm run prettier | |
| git add --update |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This documents the release process and provides script snippets, that can be executed manually (when GitHub Actions isnt' available).
Additionally, three GitHub Actions workflows are provided:
releaseVersionand anextVersion. This updates the version, the changelog and creates a tag and finally creates a new draft release.Fixes #95