Compare commits

6 Commits

Author SHA1 Message Date
35167f1853 And again...
All checks were successful
Publish Package / build-and-publish (push) Successful in 7s
2026-03-19 10:52:46 +00:00
815ae473db Try again
Some checks failed
Publish Package / build-and-publish (push) Failing after 6s
2026-03-19 10:49:43 +00:00
ff3052f3b0 Fix casing in NPM configuration for build/push job
Some checks failed
Publish Package / build-and-publish (push) Failing after 5s
2026-03-19 10:46:12 +00:00
0985e40ead Attempt another registry push pattern
Some checks failed
Publish Package / build-and-publish (push) Failing after 7s
2026-03-19 10:40:10 +00:00
23afe71752 Attempt force auth
Some checks failed
Publish Package / build-and-publish (push) Failing after 6s
2026-03-18 21:08:00 +00:00
a77d661797 Update package name
Some checks failed
Publish Package / build-and-publish (push) Failing after 7s
2026-03-18 21:06:06 +00:00
2 changed files with 7 additions and 10 deletions

View File

@@ -19,7 +19,8 @@ jobs:
uses: actions/setup-node@v3 uses: actions/setup-node@v3
with: with:
node-version: 20 node-version: 20
registry-url: "https://git.fjla.uk/api/packages/npm/" registry-url: 'https://git.fjla.uk/api/packages/owlboard/npm'
scope: '@OwlBoard'
- name: Install Dependencies - name: Install Dependencies
run: npm ci run: npm ci
@@ -27,12 +28,8 @@ jobs:
- name: Build - name: Build
run: npm run build run: npm run build
# - name: Publish to NPM
# run: npm publish --access public
# env:
# NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Publish to Gitea Repo - name: Publish to Gitea Repo
run: npm publish run: |
env: npm config set //git.fjla.uk/api/packages/owlboard/npm/:_authToken ${{ secrets.REPO_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.REPO_TOKEN }} npm config set //git.fjla.uk/api/packages/OwlBoard/npm/:_authToken ${{ secrets.REPO_TOKEN }}
npm publish --registry=https://git.fjla.uk

View File

@@ -1,5 +1,5 @@
{ {
"name": "owlboard-ts", "name": "@owlboard/owlboard-ts",
"version": "3.0.0", "version": "3.0.0",
"description": "TypeScript API Library to interact with the OwlBoard API (> v3.0.0)", "description": "TypeScript API Library to interact with the OwlBoard API (> v3.0.0)",
"main": "./dist/index.js", "main": "./dist/index.js",