Npm gitea publish (#200)

* update gitignore for goland and first attempt at git.vdb.to npm publish

* whitespace yaml nonsense

* missing run entry

* lerna is not cicd friendly, yet

* try from-git arg in lerna.json

* attempt default lerna publish with full checkout

* explicit cli args... lerna.json ???

* explicit cli args... from-package is not --arg

* make publish yaml match manual workflow
This commit is contained in:
Michael 2022-10-13 15:12:24 -04:00 committed by GitHub
parent bad5ec754a
commit 5ffe13b723
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 43 additions and 4 deletions

View File

@ -15,7 +15,10 @@ jobs:
matrix:
node-version: [ 16.x ]
steps:
- uses: actions/checkout@v2
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
@ -35,7 +38,7 @@ jobs:
- name: Authenticate to git.vdb.to registry
run: |
npm config set -- '//git.vdb.to/api/packages/cerc-io/npm/:_authToken' "${{ secrets.GITEA_PUBLISH_TOKEN }}"
- name: yarn publish
- name: lerna publish
run: |
yarn publish:workspace
lerna publish from-package --no-git-tag-version --yes

View File

@ -20,3 +20,36 @@ jobs:
run: docker tag ghcr.io/cerc-io/watcher-ts:${{steps.vars.outputs.sha}} ghcr.io/cerc-io/watcher-ts:${{steps.vars.outputs.tag}}
- name: Docker Push to Github Hub
run: docker push ghcr.io/cerc-io/watcher-ts:${{steps.vars.outputs.tag}}
npm_publish:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 16.x ]
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
registry-url: 'https://npm.pkg.github.com'
- run: yarn
env:
NODE_AUTH_TOKEN: ${{ secrets.PAT_PACKAGES }}
- name: Run yarn build
env:
NODE_AUTH_TOKEN: ${{ secrets.PAT_PACKAGES }}
run: |
yarn build
- name: Configure git.vdb.to npm registry
run: |
npm config set @cerc-io:registry https://git.vdb.to/api/packages/cerc-io/npm/
- name: Authenticate to git.vdb.to registry
run: |
npm config set -- '//git.vdb.to/api/packages/cerc-io/npm/:_authToken' "${{ secrets.GITEA_PUBLISH_TOKEN }}"
- name: lerna publish
run: |
lerna publish from-package --no-git-tag-version --yes

1
.gitignore vendored
View File

@ -3,3 +3,4 @@ dist/
out/
.vscode
.idea

View File

@ -7,7 +7,9 @@
"useWorkspaces": true,
"command": {
"publish": {
"registry": "https://git.vdb.to/api/packages/cerc-io/npm/"
"registry": "https://git.vdb.to/api/packages/cerc-io/npm/",
"yes": true,
"from-git": true
}
}
}