Skip to content

🔧 do unspeakable things to fix local and in-container endpoint resolu… #4

🔧 do unspeakable things to fix local and in-container endpoint resolu…

🔧 do unspeakable things to fix local and in-container endpoint resolu… #4

Workflow file for this run

---
name: ci
on:
push:
branches:
- mainline
jobs:
build-image:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm ci
- run: npm run build
- run: npm run copy-dist -w packages/asset
- uses: docker/setup-buildx-action@v3
- uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- run: docker build . -t ajchili/mock-me:latest
working-directory: ./packages/server
- run: docker push ajchili/mock-me:latest