Skip to content

add missing env var to package-linux.yml #7

add missing env var to package-linux.yml

add missing env var to package-linux.yml #7

Workflow file for this run

name: Publish linux executables
on:
push:
branches:
- master
workflow_dispatch:
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout git repo
uses: actions/checkout@v4
- name: Install Node and NPM
uses: actions/[email protected]
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm install
- name: Build and publish binaries
run: npm run build-linux
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}