Skip to content

Use html and Bun bundling instead of pug #24

Use html and Bun bundling instead of pug

Use html and Bun bundling instead of pug #24

Workflow file for this run

name: Build Docker image
on:
push:
branches:
- 'master'
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: |
mpoc/sleep-tracker:latest
mpoc/sleep-tracker:${{ github.sha }}