-
Notifications
You must be signed in to change notification settings - Fork 1
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
Showing
2 changed files
with
35 additions
and
1 deletion.
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
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
#+Title: Notes for Project | ||
#+TODO: TODO | DONE | ||
#+TODO: | ARCHIVED | ||
#+Time-stamp: <2024-12-16 15:39> | ||
|
||
* TODOs [0/1] | ||
|
||
** TODO Publish on Marketplace, OpenVSX | ||
|
||
https://github.com/eclipse/openvsx/wiki | ||
|
||
#+begin_src yaml | ||
- name: Publish to Marketplace | ||
run: vsce publish --pat "${{ secrets.VSCODE_MARKETPLACE_TOKEN }}" | ||
- name: Publish to Open VSX | ||
run: npx ovsx publish "vscode-tlaplus-${{ steps.version.outputs.version }}.vsix" -p "${{ secrets.OPEN_VSX_TOKEN }}" | ||
#+end_src | ||
|
||
* How to release | ||
|
||
- If we stay with jj, via the web interface. | ||
|
||
#+begin_src sh | ||
# push with auto-generate branch name: | ||
jj git push -c @ # or -c @- if we are on an empty commit | ||
|
||
# Update pull request / branch: | ||
jj bookmark move <branchname> <revision-name, probably @> | ||
jj git push | ||
|
||
# Update from main | ||
jj git fetch | ||
jj rebase -d <master bookmark> | ||
#+end_src |