mirror of
https://github.com/project-zot/zot.git
synced 2024-12-16 21:56:37 -05:00
ca1d4beb2a
* ci: also allow manual workflow triggers Signed-off-by: Ramkumar Chinchani <rchincha@cisco.com> * ci: add a github actions checker Signed-off-by: Ramkumar Chinchani <rchincha@cisco.com>
43 lines
1.3 KiB
YAML
43 lines
1.3 KiB
YAML
name: 'Sync images and artifacts to ghcr'
|
|
on:
|
|
schedule:
|
|
- cron: '30 1 * * *'
|
|
push:
|
|
branches:
|
|
- main
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
packages: write
|
|
|
|
jobs:
|
|
sync-golang:
|
|
name: 'golang'
|
|
strategy:
|
|
matrix:
|
|
golang_version:
|
|
- 1.18
|
|
- 1.19
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Log in to GitHub Docker Registry
|
|
uses: docker/login-action@v2
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: Tag and push golang to ghcr
|
|
run: |
|
|
docker trust inspect golang:${{ matrix.golang_version }}
|
|
docker pull golang:${{ matrix.golang_version }}
|
|
docker tag golang:${{ matrix.golang_version }} ghcr.io/${{ github.repository_owner }}/golang:${{ matrix.golang_version }}
|
|
docker push ghcr.io/${{ github.repository_owner }}/golang:${{ matrix.golang_version }}
|
|
sync-trivy:
|
|
name: 'trivy-db'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Copy trivy-db using oras cli
|
|
run: |
|
|
oras login -u ${{ github.actor }} -p ${{ secrets.GITHUB_TOKEN }} ghcr.io
|
|
oras copy ghcr.io/aquasecurity/trivy-db:2 ghcr.io/${{ github.repository_owner }}/trivy-db:2
|