1
0
Fork 0
mirror of https://git.sr.ht/~ashkeel/sourcehut-mirror-bridge synced 2024-11-21 21:22:20 +00:00
sourcehut-mirror-bridge/.forgejo/workflows/docker.yaml

33 lines
1.2 KiB
YAML
Raw Normal View History

2024-04-27 18:02:06 +00:00
name: Build and push Docker image
on:
push:
jobs:
build-and-publish:
runs-on: docker
steps:
- uses: actions/checkout@v4
- name: Build latest
uses: https://codeberg.org/umglurf/kaniko-action@main
with:
cache: true
2024-04-27 18:03:55 +00:00
cache_repo: ${{ vars.REGISTRY_URL }}/${{ github.repository }}/cache
2024-04-27 18:02:06 +00:00
credentials: |
2024-04-27 18:03:55 +00:00
${{ vars.REGISTRY_URL }}=${{ secrets.REGISTRY_USERNAME }}:${{ secrets.REGISTRY_TOKEN }}
2024-04-27 18:02:06 +00:00
destinations: |
2024-04-27 18:03:55 +00:00
${{ vars.REGISTRY_URL }}/${{ github.repository }}:latest ${{ vars.REGISTRY_URL }}/${{ github.repository }}:${{ github.sha }}
2024-04-27 18:02:06 +00:00
push: "true"
if: github.ref == 'refs/heads/master'
- name: Build ref
uses: https://codeberg.org/umglurf/kaniko-action@main
with:
cache: true
2024-04-27 18:03:55 +00:00
cache_repo: ${{ vars.REGISTRY_URL }}/${{ github.repository }}/cache
2024-04-27 18:02:06 +00:00
credentials: |
2024-04-27 18:03:55 +00:00
${{ vars.REGISTRY_URL }}=${{ secrets.REGISTRY_USERNAME }}:${{ secrets.REGISTRY_TOKEN }}
2024-04-27 18:02:06 +00:00
destinations: |
2024-04-27 18:03:55 +00:00
${{ vars.REGISTRY_URL }}/${{ github.repository }}:${{ github.ref_name }} ${{ vars.REGISTRY_URL }}/${{ github.repository }}:${{ github.sha }}
2024-04-27 18:02:06 +00:00
push: "true"
if: github.ref != 'refs/heads/master'