diff --git a/.github/workflows/rowboat-build.yml b/.github/workflows/rowboat-build.yml deleted file mode 100644 index 270e6263..00000000 --- a/.github/workflows/rowboat-build.yml +++ /dev/null @@ -1,47 +0,0 @@ -name: Rowboat Build - -on: - pull_request: - -jobs: - build-rowboat-nextjs: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v6 - - - name: Setup Node.js - uses: actions/setup-node@v6 - with: - cache-dependency-path: 'apps/rowboat/package-lock.json' - node-version: '20' - cache: 'npm' - - - name: Install dependencies - run: npm ci - working-directory: apps/rowboat - - - name: Build Rowboat - run: npm run build - working-directory: apps/rowboat - - build-rowboatx: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v6 - - - name: Setup Node.js - uses: actions/setup-node@v6 - with: - cache-dependency-path: 'apps/rowboat/package-lock.json' - node-version: '24' - cache: 'npm' - - - name: Install dependencies - run: npm ci - working-directory: apps/cli - - - name: Build Rowboat - run: npm run build - working-directory: apps/cli \ No newline at end of file diff --git a/.github/workflows/x-publish.yml b/.github/workflows/x-publish.yml deleted file mode 100644 index c411ab68..00000000 --- a/.github/workflows/x-publish.yml +++ /dev/null @@ -1,43 +0,0 @@ -name: Publish to npm - -on: workflow_dispatch - -permissions: - id-token: write # Required for OIDC - contents: read - -jobs: - publish: - runs-on: ubuntu-latest - - steps: - - name: Checkout repo - uses: actions/checkout@v6 - - - name: Set up Node - uses: actions/setup-node@v6 - with: - node-version: 24 - registry-url: https://registry.npmjs.org/ - - - name: Update npm - run: npm install -g npm@latest - - - name: Install deps - run: npm ci - working-directory: apps/cli - - # optional: run tests - # - run: npm test - - - name: Build - run: npm run build - working-directory: apps/cli - - - name: Pack - run: npm pack - working-directory: apps/cli - - - name: Publish to npm - run: npm publish --access public - working-directory: apps/cli \ No newline at end of file