Skip to content

Commit a372a81

Browse files
committed
Added docs and missing parameter for publishing
1 parent 7c9bfa4 commit a372a81

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

.github/workflows/publishing.yml

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
name: Load used actions
1919
with:
2020
PAT: ${{ secrets.GITHUB_TOKEN }}
21+
user: rajbos
2122
id: load-actions
2223

2324
- run: echo ${{ steps.load-actions.outputs.actions }} > 'actions.json'

Coding.md

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
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.
20+
21+
``` shell
22+
git push --tags
23+
```

0 commit comments

Comments
 (0)