You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Before starting VsCode with this repo, don't forget to load the default values for local testing
2
+
3
+
4
+
Set these before starting VsCode:
5
+
```shell
6
+
process.env.PAT = ''
7
+
process.env.GITHUB_USER = 'rajbos'
8
+
```
9
+
10
+
# Publishing
11
+
Publishing a new version is done through Git Tags. You can add a tag by calling the shell command below. The `-m` option is for the message that annotates the tag.
12
+
13
+
We use semantic version as needed for the Action Marketplace.
14
+
15
+
```shell
16
+
git tag -a v1.0.0 -m "Version 1.0.0"
17
+
```
18
+
19
+
Next you need to push the tags to GitHub, which will trigger the `publishing` workflow.
0 commit comments