mirror of
https://github.com/chatmail/core.git
synced 2026-04-02 05:22:14 +03:00
48 lines
1.3 KiB
YAML
48 lines
1.3 KiB
YAML
name: "Publish @deltachat/jsonrpc-client"
|
|
on:
|
|
workflow_dispatch:
|
|
release:
|
|
types: [published]
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
pack-module:
|
|
name: "Publish @deltachat/jsonrpc-client"
|
|
runs-on: ubuntu-latest
|
|
environment:
|
|
name: npm-jsonrpc-client
|
|
url: https://www.npmjs.com/package/@deltachat/jsonrpc-client
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
with:
|
|
show-progress: false
|
|
persist-credentials: false
|
|
|
|
- uses: actions/setup-node@v6
|
|
with:
|
|
node-version: 20
|
|
registry-url: "https://registry.npmjs.org"
|
|
|
|
# Ensure npm 11.5.1 or later is installed.
|
|
# It is needed for <https://docs.npmjs.com/trusted-publishers>
|
|
- name: Update npm
|
|
run: npm install -g npm@latest
|
|
|
|
- name: Install dependencies without running scripts
|
|
working-directory: deltachat-jsonrpc/typescript
|
|
run: npm install --ignore-scripts
|
|
|
|
- name: Package
|
|
working-directory: deltachat-jsonrpc/typescript
|
|
run: |
|
|
npm run build
|
|
npm pack .
|
|
|
|
- name: Publish
|
|
working-directory: deltachat-jsonrpc/typescript
|
|
run: npm publish --provenance deltachat-jsonrpc-client-* --access public
|