fix: folder case fix #12
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: [20.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 |