60 lines
1.8 KiB
YAML
Executable File
60 lines
1.8 KiB
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: Debug: Print Repository Information
|
|
run: |
|
|
echo "Repository: ${{ github.repository }}" # Print the full repository name (owner/repo)
|
|
echo "IMAGE (parsed from repo): ${{ env.IMAGE }}" # Print the value of IMAGE (expected to be full repo name)
|
|
|
|
- name: Docker.io repository name
|
|
if: ${{ env.REGISTRY == 'docker.io' }}
|
|
id: repo_name
|
|
run: |
|
|
echo "IMAGE_NAME=${{ env.USER }}/${{ env.IMAGE }}:${{ env.RELEASE }}" >> $GITHUB_ENV
|
|
echo "IMAGE_NAME: ${{ env.IMAGE_NAME }}" # Debugging output
|
|
|
|
- name: Github repository name
|
|
if: ${{ env.REGISTRY == 'ghcr.io' }}
|
|
id: repo_name
|
|
run: |
|
|
echo "IMAGE_NAME=${{ env.REGISTRY }}/${{ env.USER }}/${{ env.IMAGE }}:${{ env.RELEASE }}" >> $GITHUB_ENV
|
|
echo "IMAGE_NAME: ${{ env.IMAGE_NAME }}" # Debugging output
|
|
|
|
- name: Build and push
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
file: Dockerfile
|
|
push: true
|
|
tags: ${{ env.IMAGE_NAME }}
|