2020-11-01 12:27:33 +03:00
|
|
|
name: Publish release
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- 'v*'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2020-12-30 22:58:36 +03:00
|
|
|
runs-on: ubuntu-20.04
|
2020-11-01 12:27:33 +03:00
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v2
|
2021-10-31 01:07:38 +03:00
|
|
|
- name: Use node.js
|
2020-11-01 12:27:33 +03:00
|
|
|
uses: actions/setup-node@v1
|
|
|
|
with:
|
2022-05-15 09:35:59 +03:00
|
|
|
node-version: 16.14
|
2020-11-01 12:27:33 +03:00
|
|
|
- name: Generate release assets
|
2022-02-27 22:10:10 +03:00
|
|
|
run: npm ci && VERSION=${GITHUB_REF#refs/tags/v} npm run build:dist
|
2020-11-01 12:27:33 +03:00
|
|
|
- name: Publish release with assets
|
|
|
|
uses: docker://antonyurchenko/git-release:latest
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2020-11-01 12:34:53 +03:00
|
|
|
ALLOW_EMPTY_CHANGELOG: "true"
|
2020-11-01 12:27:33 +03:00
|
|
|
with:
|
|
|
|
args: |
|
|
|
|
dist/shlink-web-client_*_dist.zip
|