Skip to content

Commit

Permalink
ci: automated release
Browse files Browse the repository at this point in the history
  • Loading branch information
harrydowning committed Jun 29, 2024
1 parent 73e714f commit fce27be
Show file tree
Hide file tree
Showing 4 changed files with 2,055 additions and 1 deletion.
22 changes: 22 additions & 0 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: pipeline

on: [push]

jobs:
release:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main' && !contains(github.event.head_commit.message, '[skip release]')
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "18"
- run: npm i
- run: npm vsce package
- run: echo "VERSION=$(node -p "require('./package.json').version")" >> "$GITHUB_ENV"
- run: gh release create v$VERSION --generate-notes yaml-embedded-languages-$VERSION.vsix
env:
GH_TOKEN: ${{ github.token }}
- run: yarn vsce publish
env:
VSCE_PAT: ${{ secrets.VSCE_PAT }}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
node_modules
*.vsix
Loading

0 comments on commit fce27be

Please sign in to comment.