Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 94ae82ee authored by Simon Chan's avatar Simon Chan
Browse files

chore: prepare for next release

parent 3e5d1806
Loading
Loading
Loading
Loading
+25 −0
Original line number Diff line number Diff line
name: Publish Package to npm
on:
  push:
    tags:
      - "v**"

jobs:
  publish:
    name: Publish
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v3

      - name: Setup node
        uses: actions/setup-node@v3
        with:
          node-version: 18

      - run: node common/scripts/install-run-rush.js install
      - run: node common/scripts/install-run-rush.js build --verbose
      - run: node common/scripts/install-run-rush.js version --bump
      - run: node common/scripts/install-run-rush.js publish -p --include-all --set-access-level public
        env:
          NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
+9 −9
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
    "changes": [
        {
            "packageName": "@yume-chan/adb-credential-web",
      "comment": "",
            "comment": "Change `AdbWebCredentialStore` to save private keys in IndexedDB, so it can be used in Web Workers. Previously saved keys in `localStorage` will be ignored and a new key will be generated.",
            "type": "none"
        }
    ],
+10 −0
Original line number Diff line number Diff line
{
    "changes": [
        {
            "packageName": "@yume-chan/adb-daemon-webusb",
            "comment": "Use ECMAScript private class fields syntax (supported by Chrome 74, Firefox 90, Safari 14.1 and Node.js 12.0.0).",
            "type": "none"
        }
    ],
    "packageName": "@yume-chan/adb-daemon-webusb"
}
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
    "changes": [
        {
            "packageName": "@yume-chan/adb-daemon-webusb",
            "comment": "",
            "comment": "Rename package to `@yume-chan/adb-daemon-webusb` following the renaming of `AdbDaemonTransport`.",
            "type": "none"
        }
    ],
+10 −0
Original line number Diff line number Diff line
{
    "changes": [
        {
            "packageName": "@yume-chan/adb-daemon-webusb",
            "comment": "Rename `AdbWebUsbBackend` to `AdbDaemonWebUsbDevice` following the renaming of `AdbDaemonTransport`.",
            "type": "none"
        }
    ],
    "packageName": "@yume-chan/adb-daemon-webusb"
}
Loading