mirror of
https://github.com/video-dev/hls.js.git
synced 2026-05-17 13:30:38 +00:00
87c3a3538e
* switch to node 18 which is now LTS * unpin `netlify-cli` * use `npm-ci-please` to workaound `npm ci` being broken fixes #5115 * set version using `npm version` which will also update the version in the package-lock * be selective about what goes in artifact to speed things up * use newer `npm-ci-please` * fix setting version on netlify * fix permission on script * listen on all interfaces for sauce labs because otherwise with node 18 the server is not reachable through the proxy for some reason
7 lines
155 B
Bash
Executable File
7 lines
155 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
VERSION="$(node ./scripts/get-package-version.js)"
|
|
echo "Setting version to '$VERSION'"
|
|
npm version --git-tag-version false "$VERSION"
|