Skip to content

0.3.3

0.3.3 #31

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v2
- name: Cache node modules
uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Node ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install and npm run build
run: |
npm i
npm run css-build
npm run build:prod
cd dist/sekret-link-ui
tar czf ../sekret.link-ui.tgz .
- name: create release
run: |
set -x
assets=()
for asset in dist/*.tgz; do
assets+=("-a" "$asset")
done
tag_name="${GITHUB_REF##*/}"
gh release create "${assets[@]}" -m "$tag_name" "$tag_name"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}