Skip to content

chore(release): 2.28.2 #54

chore(release): 2.28.2

chore(release): 2.28.2 #54

Workflow file for this run

name: Publish to GitHub
on:
push:
tags:
- "*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check
if: ${{ github.repository_owner != 'hpcc-systems' }}
run: |
echo "Not hpcc-systems repository"
exit 1
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: "16.x"
- run: git submodule update --init --recursive
- run: npm ci
- run: npm run vsce-package;
- name: Create Release
id: create_release
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false
- uses: shogo82148/actions-upload-release-asset@v1
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: "./hpcc-systems.ecl.vsix"