mirror of
https://github.com/bradganley/bsky-user-activity-bot.git
synced 2025-05-20 01:28:44 +00:00
19 lines
294 B
YAML
19 lines
294 B
YAML
name: Docker Image CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
pull_request:
|
|
branches: [ "main" ]
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: oven/bun:latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Build the Docker image
|
|
run: docker build . --file Dockerfile --tag buab:$(date +%s)
|