Skip to content

Commit

Permalink
deploy vsc extension in a separate job
Browse files Browse the repository at this point in the history
  • Loading branch information
danilopedraza committed Feb 16, 2025
1 parent 8a3d2bb commit 15fa09d
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ concurrency:
cancel-in-progress: false

jobs:
deploy:
deploy-website:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
Expand All @@ -39,6 +39,14 @@ jobs:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4

deploy-ext:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v30
with:
nix_path: nixpkgs=channel:nixos-24.05

- name: Deploy VSC extension
run: nix-shell --command "make deploy-vsc-ext"
Expand Down

0 comments on commit 15fa09d

Please sign in to comment.