Skip to content

tweak: removed id copy button from player modal #10

tweak: removed id copy button from player modal

tweak: removed id copy button from player modal #10

name: Create Tagged Pre-Release
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+-**"
jobs:
build:
name: "Build Changelog & Pre-Release"
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
# We fetch to 0 so we can collect the commits
# since last update
- name: Checkout code
uses: actions/checkout@v2
with:
fetch-depth: 0
ref: ${{ github.ref }}
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Download all modules
run: npm ci
- name: Build Pre-Release project
run: TX_PRERELEASE_BUILD=true npm run build
- name: Compress build output with zip
run: |
cd dist && zip -r ../monitor.zip .
- name: Create and Upload Pre-Release
uses: "marvinpinto/[email protected]"
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
prerelease: true
files: monitor.zip