mirror of
https://github.com/ajurna/cbwebreader.git
synced 2025-12-06 06:17:17 +00:00
20 lines
317 B
YAML
20 lines
317 B
YAML
name: Build and push image
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: self-hosted
|
|
defaults:
|
|
run:
|
|
working-directory: /repo
|
|
steps:
|
|
- name: Checkout repo
|
|
run: git pull
|
|
|
|
- name: Deploy
|
|
run: |
|
|
docker build . --no-cache -t ajurna/cbwebreader
|