Skip to content

Bump version to v2.3.5 #75

Bump version to v2.3.5

Bump version to v2.3.5 #75

Workflow file for this run

name: Node.js Github Workflow
on:
push:
branches: [ master ]
release:
types: [ created ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 16.x
cache: 'npm'
- run: npm ci
- run: npm run build
- run: npm run pack
- uses: actions/upload-artifact@v2
with:
name: archives
path: dist/*
release:
name: Add to release
if: github.event_name == 'release' && github.event.action == 'created' #only run if a release was created
needs: [ build ]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v2
with:
name: archives
- name: Upload the artifacts
uses: skx/github-action-publish-binaries@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
args: 'NflxMultiSubs_*'