Skip to content

Commit

Permalink
devOps: added workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
daiigr committed Sep 27, 2023
1 parent 53f4c90 commit e744721
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
on:
push:
branches:
- main
release:
types:
- created

- name: Publish
if: success() && startsWith(github.ref, 'refs/tags/') && matrix.os == 'ubuntu-latest'
run: npm run deploy
env:
VSCE_PAT: ${{ secrets.VSCE_PAT }}

0 comments on commit e744721

Please sign in to comment.