Skip to content

Merge pull request #79 from CastQuest/copilot/fix-corrupted-lockfile #49

Merge pull request #79 from CastQuest/copilot/fix-corrupted-lockfile

Merge pull request #79 from CastQuest/copilot/fix-corrupted-lockfile #49

Workflow file for this run

name: Deploy
on:
push:
branches: [main]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 9.0.0
- name: Install dependencies
run: pnpm install
- name: Login to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build/push images
run: |
chmod +x scripts/operator.ps1 || true
echo "Use operator.ps1 for full pipeline."