Custom app launcher, browser home page, and service monitor. cute.haus
homelab react typescript
0

Configure Feed

Select the types of activity you want to include in your feed.

github: add build

Aly Raffauf (Jan 29, 2026, 12:40 PM EST) 5b2e1f7a b2d315b2

+30
+30
.github/workflows/build.yml
··· 1 + name: Build and Push 2 + 3 + on: 4 + push: 5 + branches: [master] 6 + 7 + jobs: 8 + build: 9 + runs-on: ubuntu-latest 10 + permissions: 11 + contents: read 12 + packages: write 13 + 14 + steps: 15 + - uses: actions/checkout@v4 16 + 17 + - name: Log in to GitHub Container Registry 18 + uses: docker/login-action@v3 19 + with: 20 + registry: ghcr.io 21 + username: ${{ github.actor }} 22 + password: ${{ secrets.GITHUB_TOKEN }} 23 + 24 + - name: Build and push 25 + uses: docker/build-push-action@v6 26 + with: 27 + file: Containerfile 28 + context: . 29 + push: true 30 + tags: ghcr.io/${{ github.repository }}:latest