Remove out/ folder from .vscodeignore #19
Workflow file for this run
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
on: | |
push: | |
tags: | |
- "*" | |
# These permissions are needed to assume roles from Github's OIDC. | |
permissions: | |
contents: write | |
id-token: write | |
name: Publish Extension | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install devbox | |
uses: jetify-com/[email protected] | |
with: | |
enable-cache: 'true' | |
- name: Install vendors | |
run: devbox run yarn install --frozen-lockfile | |
- name: Compile codebase | |
run: devbox run yarn run compile | |
- name: Run linters | |
run: devbox run yarn run lint | |
publish: | |
needs: lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install devbox | |
uses: jetify-com/[email protected] | |
with: | |
enable-cache: 'true' | |
- name: Install vendors | |
run: devbox run yarn install --frozen-lockfile | |
- id: get-secrets | |
uses: grafana/shared-workflows/actions/get-vault-secrets@main | |
with: | |
# Secrets placed in the ci/repo/grafana/<repo>/<path> path in Vault | |
repo_secrets: | | |
OPEN_VSX_TOKEN=openvsx:token | |
VS_MARKETPLACE_TOKEN=vscode-marketplace:token | |
- name: Create extension package | |
run: devbox run vsce package --out grafana-vscode.vsix | |
- name: Publish to Open VSX | |
run: devbox run npx --yes [email protected] publish --pat ${{ env.OPEN_VSX_TOKEN }} --packagePath grafana-vscode.vsix | |
- name: Publish to Visual Studio Marketplace | |
run: devbox run vsce publish --pat ${{ env.VS_MARKETPLACE_TOKEN }} --packagePath grafana-vscode.vsix | |
- name: Create GitHub release | |
uses: ncipollo/release-action@v1 | |
with: | |
allowUpdates: true | |
artifacts: "grafana-vscode.vsix" | |
token: ${{ secrets.GITHUB_TOKEN }} |