Skip to content

Commit 0eae3d3

Browse files
authored
chore: Migrate to ExEr7um/workflows for CI (ExEr7um#65)
Migration to `ExEr7um/workflows` for CI.
1 parent 33fe21f commit 0eae3d3

File tree

3 files changed

+27
-39
lines changed

3 files changed

+27
-39
lines changed

.github/workflows/changelog.yml

+15
Original file line numberDiff line numberDiff line change
@@ -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

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Publish to VSCode Marketplace
2+
3+
on:
4+
workflow_run:
5+
workflows: [Release]
6+
types: [completed]
7+
8+
jobs:
9+
publish:
10+
uses: ExEr7um/workflows/.github/workflows/publish-vscode.yml@v0.7.0
11+
secrets:
12+
VSCE_PAT: ${{ secrets.VSCE_PAT }}

.github/workflows/release.yml

-39
This file was deleted.

0 commit comments

Comments
 (0)