Skip to content

Build

Build #2

Workflow file for this run

name: Build
on:
push:
branches:
- main
workflow_dispatch:
schedule:
- cron: '14 3 * * sun'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Log in
uses: docker/login-action@v3
with:
username: gbxyz
password: ${{secrets.DOCKER_PASSWORD}}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
push: true
tags: gbxyz/pepper:latest