Kind of done trying to resolve build issue so changed runner to self-hosted which should work
Some checks failed
Publish to Private NPM Registry / publish (push) Failing after 8s

This commit is contained in:
Alan Bridgeman 2026-01-06 21:50:51 -06:00
parent 153e8f608d
commit 47d22daae1

View file

@ -8,7 +8,8 @@ on:
jobs:
publish:
runs-on: default
#runs-on: default
runs-on: self-hosted
steps:
# Checkout the repository
@ -43,16 +44,16 @@ jobs:
# > Will fall back to the repository owner when using the GitHub Packages registry (https://npm.pkg.github.com/).
scope: '@BridgemanAccessible'
- name: Install libatomic
run: |
sudo apt-get update
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y libatomic1
#- name: Install libatomic
# run: |
# sudo apt-get update
# sudo DEBIAN_FRONTEND=noninteractive apt-get install -y libatomic1
# Transpile/Build the package (TypeScript -> JavaScript)
- name: Transpile/Build the package (TypeScript -> JavaScript)
run: |
# Because Yarn is used locally better to install and use it than have to debug weird inconsistencies
npm install --global yarn
#npm install --global yarn
# Install needed dependencies
yarn install