From 81259115d1fdc30c37329d36d8a281f20f1bb97f Mon Sep 17 00:00:00 2001 From: Jonathan Jogenfors Date: Mon, 20 Nov 2023 14:36:17 +0100 Subject: [PATCH] chore(cli): set cli workdir in npm publish (#5185) * chore: set cli release working dir * chore: add repo url to npmjs * chore: bump node setup to v4 * chore: normalize the github url --- .github/workflows/cli-release.yml | 6 +++++- cli/package.json | 5 +++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cli-release.yml b/.github/workflows/cli-release.yml index c911fd40b..ee84039f1 100644 --- a/.github/workflows/cli-release.yml +++ b/.github/workflows/cli-release.yml @@ -5,10 +5,14 @@ on: jobs: publish: runs-on: ubuntu-latest + defaults: + run: + working-directory: ./cli + steps: - uses: actions/checkout@v2 # Setup .npmrc file to publish to npm - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v4 with: node-version: "20.x" registry-url: "https://registry.npmjs.org" diff --git a/cli/package.json b/cli/package.json index 4d7ebfc96..4a89bdc05 100644 --- a/cli/package.json +++ b/cli/package.json @@ -74,5 +74,10 @@ }, "coverageDirectory": "./coverage", "testEnvironment": "node" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/immich-app/immich.git", + "directory": "cli" } }