Skip to content

1.15.3

1.15.3 #13

Workflow file for this run

name: GH_RELEASE
on:
push:
tags:
- "*.*.*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install [email protected]
if: startsWith(github.ref, 'refs/tags/')
run: npm install [email protected]
- name: Generate Changelog-current
run: npm run changelog-current | grep -v "^>" | sed '/^$/d' > ${{ github.workspace }}-CHANGELOG.txt
- name: Post intstall
run: npm run postinstall
- name: Build production
run: npm run build.prod
- name: Install zip
uses: montudor/action-zip@v1
- name: Zip output
run: zip -qq -r igo2.zip *
working-directory: dist/igo2
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
body_path: ${{ github.workspace }}-CHANGELOG.txt
files: dist/igo2/igo2.zip