Skip to content

Commit

Permalink
ci: add github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
serg3295 committed May 11, 2024
1 parent 4b3bbc6 commit 10f2d5e
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Release
on:
workflow_dispatch:
inputs:
tag_name:
description: 'Tag name for release'
required: false
default: test
push:
tags:
- v[0-9]+.[0-9]+.[0-9]+

jobs:
build_vsix:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18
- run: npm ci

- name: Setup Environment
run: node -e "console.log('PKG_VERSION=' + require('./package.json').version + '\nPKG_NAME=' + require('./package.json').name + '-' + require('./package.json').version)" >> $GITHUB_ENV

- name: Verify versions
run: node -e "if ('refs/tags/v' + '${{ env.PKG_VERSION }}' !== '${{ github.ref }}') { console.log('::error' + 'Version Mismatch. refs/tags/v' + '${{ env.PKG_VERSION }}', '${{ github.ref }}'); throw Error('Version Mismatch')} "

- name: Build
shell: bash
run: |
npm run esbuild-base production
zip -r ${{ env.PKG_NAME }}.zip out/ prebuilds/ CHANGES.md LICENSE.md README.md
- name: Create GitHub release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
generate_release_notes: true
files: ${{ env.PKG_NAME }}.zip
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ test/*
kit/*
out*
.vscode
.zip

0 comments on commit 10f2d5e

Please sign in to comment.