Compare commits

..

2 Commits

Author SHA1 Message Date
Elio Struyf 614a35a1aa Merge pull request #1026 from estruyf/beta
v10.10.1
2026-04-23 15:12:13 +02:00
Elio Struyf b2787a056a Merge pull request #1021 from estruyf/beta
10.10.0
2026-04-03 10:28:31 +02:00
+11 -22
View File
@@ -6,14 +6,13 @@ on:
workflow_dispatch:
env:
PACKAGE_NAME: "fm-localized"
MS_URL: "https://marketplace.visualstudio.com/items?itemName=eliostruyf.vscode-\
front-matter-beta"
VSX_URL: "https://open-vsx.org/extension/eliostruyf/vscode-front-matter-beta"
PACKAGE_NAME: 'fm-localized'
MS_URL: 'https://marketplace.visualstudio.com/items?itemName=eliostruyf.vscode-front-matter-beta'
VSX_URL: 'https://open-vsx.org/extension/eliostruyf/vscode-front-matter-beta'
jobs:
localization:
name: "Localization"
name: 'Localization'
runs-on: ubuntu-latest
steps:
@@ -28,11 +27,11 @@ jobs:
PACKAGE_NAME: ${{ env.PACKAGE_NAME }}
release-ms:
name: "Release to VSCode Marketplace"
name: 'Release to VSCode Marketplace'
runs-on: ubuntu-latest
needs: localization
environment:
name: "MS - BETA"
name: 'MS - BETA'
url: ${{ env.MS_URL }}
steps:
@@ -44,7 +43,7 @@ jobs:
with:
node-version: 20
registry-url: https://registry.npmjs.org/
cache: "npm"
cache: 'npm'
- name: Install the dependencies
run: npm ci
@@ -53,24 +52,14 @@ jobs:
run: node scripts/beta-release.js $GITHUB_RUN_ID
- name: Publish
run: npx @vscode/vsce publish -p ${{ secrets.VSCE_PAT }} --baseImagesUrl
https://raw.githubusercontent.com/estruyf/vscode-front-matter/dev
- name: Package VSIX
run: npx @vscode/vsce package
- name: Upload VSIX artifact
uses: actions/upload-artifact@v6
with:
name: vscode-demo-time-alpha.vsix
path: "*.vsix"
run: npx @vscode/vsce publish -p ${{ secrets.VSCE_PAT }} --baseImagesUrl https://raw.githubusercontent.com/estruyf/vscode-front-matter/dev
release-vsx:
name: "Release to Open VSX"
name: 'Release to Open VSX'
runs-on: ubuntu-latest
needs: localization
environment:
name: "Open VSX - BETA"
name: 'Open VSX - BETA'
url: ${{ env.VSX_URL }}
steps:
@@ -82,7 +71,7 @@ jobs:
with:
node-version: 20
registry-url: https://registry.npmjs.org/
cache: "npm"
cache: 'npm'
- name: Install the dependencies
run: npm ci