41 lines
923 B
YAML
Executable File
41 lines
923 B
YAML
Executable File
name: Docker
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 6 * * 0'
|
|
push:
|
|
branches: [ "main" ]
|
|
tags: [ 'v*.*.*' ]
|
|
pull_request:
|
|
branches: [ "main" ]
|
|
|
|
env:
|
|
# Use docker.io or ghcr.io
|
|
REGISTRY: docker.io
|
|
RELEASE: latest
|
|
USER: sthopeless
|
|
IMAGE: ${{ github.repository }}
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
- name: Log into registry ${{ env.REGISTRY }}
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: ${{ env.REGISTRY }}
|
|
username: ${{ secrets.DOCKER_USER }}
|
|
password: ${{ secrets.DOCKER_PASS }}
|
|
|
|
- name: Build and push
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
file: ./Dockerfile
|
|
push: true
|
|
tags: sthopeless/gitea-actions-repos-compare:latest
|