Skip to content

Fix loading of config.js #4

Fix loading of config.js

Fix loading of config.js #4

Workflow file for this run

name: Main
on:
push:
tags:
- "v*.*.*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: npm install + build
run: |
npm install
npm run build
- name: create archive
run: |
mv dist touareg-${{ github.ref_name }}
tar cvzf touareg-${{ github.ref_name }}.tar.gz touareg-${{ github.ref_name }}
- name: Release
uses: softprops/action-gh-release@v2
with:
files: touareg-${{ github.ref_name }}.tar.gz