Skip to content
This repository has been archived by the owner on Jan 13, 2025. It is now read-only.

Commit

Permalink
Create blank.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
vhyran authored Nov 23, 2024
1 parent 1f64fe9 commit 453c2c4
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/blank.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
# Step 1: Check out the code
- uses: actions/checkout@v4

# Step 2: Set up Node.js
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '16'

# Step 3: Install dependencies (including vsce)
- name: Install dependencies
run: |
npm install
npm install -g @vscode/vsce
# Step 4: Build the VS Code extension package
- name: Build VSIX package
run: vsce package

# Step 5: Upload the package to the release artefacts
- name: Upload VSIX to release
uses: actions/upload-artifact@v3
with:
name: hackthebox
path: "*.vsix"

0 comments on commit 453c2c4

Please sign in to comment.