Skip to content

Commit

Permalink
✨ Add workflow file to build and publish main branch with automated v…
Browse files Browse the repository at this point in the history
…ersion bump and npm dependencies installation
  • Loading branch information
isfopo committed Oct 27, 2024
1 parent ea8b2c1 commit 14f3f73
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/push-to-main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Build and Publish

on:
push:
branches:
- main

jobs:
build-and-deploy:
permissions:
contents: write
name: Build and Deploy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: 20

- name: "Automated Version Bump"
uses: "phips28/gh-action-bump-version@master"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
version-type: "patch"

- name: Install dependencies
run: npm install

- name: Build
run: npm run build

# - name: Publish to Visual Studio Marketplace
# uses: HaaLeo/publish-vscode-extension@v1
# with:
# pat: ${{ secrets.VS_MARKETPLACE_TOKEN }}
# registryUrl: https://marketplace.visualstudio.com

0 comments on commit 14f3f73

Please sign in to comment.