From 47d22daae17a7abb565ad10fe3579feaa8c43730 Mon Sep 17 00:00:00 2001 From: Alan Bridgeman Date: Tue, 6 Jan 2026 21:50:51 -0600 Subject: [PATCH] Kind of done trying to resolve build issue so changed runner to self-hosted which should work --- .forgejo/workflows/publish.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.forgejo/workflows/publish.yml b/.forgejo/workflows/publish.yml index c5d775d..1a356b7 100644 --- a/.forgejo/workflows/publish.yml +++ b/.forgejo/workflows/publish.yml @@ -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