From 37f1f6ac019dd9da8d30b4d96bdce2b7983e864e Mon Sep 17 00:00:00 2001 From: Andras Schmelczer Date: Tue, 21 Oct 2025 21:35:21 +0100 Subject: [PATCH] Don't publish to NPM --- .github/workflows/publish-npm.yml | 44 ------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 .github/workflows/publish-npm.yml diff --git a/.github/workflows/publish-npm.yml b/.github/workflows/publish-npm.yml deleted file mode 100644 index c9289a0f..00000000 --- a/.github/workflows/publish-npm.yml +++ /dev/null @@ -1,44 +0,0 @@ -name: Publish CLI - -on: - push: - tags: ["*"] - pull_request: - branches: ["main"] - -env: - REGISTRY: ghcr.io - IMAGE_NAME: ${{ github.repository }}-cli - -jobs: - publish-npm: - runs-on: self-hosted - - permissions: - contents: read - packages: write - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Setup Node.js environment - uses: actions/setup-node@v4.2.0 - with: - node-version: "22.x" - check-latest: true - registry-url: 'https://npm.pkg.github.com' - scope: '@schmelczer' - - - name: Install dependencies - run: | - cd frontend - npm ci - npm run build - - - name: Publish to GitHub Packages - env: - NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: | - cd frontend/local-client-cli - npm publish