We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
ExEr7um/workflows
1 parent 33fe21f commit 0eae3d3Copy full SHA for 0eae3d3
.github/workflows/changelog.yml
@@ -0,0 +1,15 @@
1
+name: Release
2
+
3
+on:
4
+ workflow_dispatch:
5
+ inputs:
6
+ version:
7
+ description: Release version
8
+ required: true
9
+ type: string
10
11
+jobs:
12
+ changelog:
13
+ uses: ExEr7um/workflows/.github/workflows/changelog.yml@v0.7.0
14
+ with:
15
+ version: ${{ inputs.version }}
.github/workflows/publish.yml
@@ -0,0 +1,12 @@
+name: Publish to VSCode Marketplace
+ workflow_run:
+ workflows: [Release]
+ types: [completed]
+ publish:
+ uses: ExEr7um/workflows/.github/workflows/publish-vscode.yml@v0.7.0
+ secrets:
+ VSCE_PAT: ${{ secrets.VSCE_PAT }}
.github/workflows/release.yml
0 commit comments