2024-01-16 13:42:25 +01:00
|
|
|
name: Publish Docker image
|
|
|
|
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
docker_publish:
|
|
|
|
runs-on: ubuntu-latest
|
2024-01-16 13:44:02 +01:00
|
|
|
container:
|
|
|
|
image: catthehacker/ubuntu:act-latest
|
2024-01-16 13:42:25 +01:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
packages: write
|
|
|
|
steps:
|
|
|
|
- name: Check out the repo
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
|
|
|
- name: Log in to the Container registry
|
|
|
|
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
|
|
|
|
with:
|
|
|
|
registry: gitea.xeovalyte.dev
|
|
|
|
username: ${{ github.actor }}
|
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
|
|
|
- name: Build and push Docker image
|
|
|
|
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
|
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
push: true
|
|
|
|
tags: gitea.xeovalyte.dev/xeovalyte/caddy-docker:latest
|