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