You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rulebot/.gitea/workflows/build_docker.yaml

28 lines
717 B
YAML

2 years ago
name: Publish Docker
run-name: ${{ github.actor }} is building ${{ github.repository }}
on:
push:
branches:
- main
jobs:
Publish-Docker:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: https://github.com/actions/checkout@v3
2 years ago
- name: Install Docker
run: curl -fsSL https://get.docker.com | sh
2 years ago
- name: Set up Docker Buildx
uses: https://github.com/docker/setup-buildx-action@v2
- name: Build and push
2 years ago
uses: https://github.com/docker/build-push-action@v2
2 years ago
with:
context: .
file: ./Dockerfile
push: false
tags: ${{ github.repository }}:latest