runner-ubuntu-custom/.gitea/workflows/release.yml

46 lines
1.4 KiB
YAML
Raw Normal View History

2025-01-02 16:17:00 +01:00
name: Publish Docker Image
on:
push:
branches:
- main
2025-01-02 16:33:46 +01:00
schedule:
- cron: '@weekly'
2025-01-02 16:17:00 +01:00
jobs:
publish:
runs-on: ubuntu-latest
2025-01-02 16:24:02 +01:00
permissions:
packages: write
contents: read
2025-01-02 16:17:00 +01:00
steps:
2025-01-02 17:10:10 +01:00
# - name: Update Docker configuration
# continue-on-error: true
# run: |
# echo "DOCKER_OPTS=\"--insecure-registry ${{ vars.PACKAGES_REGISTRY_URL }}\"" >> /etc/default/docker
# echo "{\"insecure-registries\": [\"${{ vars.PACKAGES_REGISTRY_URL }}\"]}" > /etc/docker/daemon.json
2025-01-02 17:06:25 +01:00
2025-01-02 16:17:00 +01:00
- name: Check out repository code
2025-01-02 16:29:22 +01:00
uses: actions/checkout@v4.2.2
2025-01-02 16:17:00 +01:00
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to Gitea Package Registry
2025-01-02 17:09:00 +01:00
uses: docker/login-action@v3
2025-01-02 16:17:00 +01:00
with:
2025-01-02 16:33:46 +01:00
registry: ${{ vars.PACKAGES_REGISTRY_URL }}
2025-01-02 16:29:22 +01:00
username: ${{ vars.PACKAGES_REGISTRY_USERNAME }}
password: ${{ secrets.PACKAGES_REGISTRY_PASSWORD }}
2025-01-02 17:09:00 +01:00
# - name: Log in to Gitea Package Registry
# run: echo ${{ secrets.PACKAGES_REGISTRY_PASSWORD }} | docker login ${{ vars.PACKAGES_REGISTRY_URL }} -u ${{ vars.PACKAGES_REGISTRY_USERNAME }} --password-stdin
2025-01-02 16:17:00 +01:00
- name: Build and push Docker image
id: push
uses: docker/build-push-action@v6
with:
context: .
push: true
2025-01-02 17:09:00 +01:00
tags: ${{ vars.PACKAGES_REGISTRY_URL }}/${{ gitea.repository }}:latest