Added gitea CI/CD configuration
Create Docker Image / Build Docker Image (push) Successful in 10s Details
Create Docker Image / Final Docker Image Manifest (push) Failing after 1s Details

This commit is contained in:
Deon George 2024-04-07 12:36:40 +10:00
parent e01a8d8639
commit 3d66afd02e
1 changed files with 13 additions and 0 deletions

View File

@ -62,6 +62,19 @@ jobs:
needs: build
steps:
- name: Registry FQDN Setup
id: registry
run: |
registry=${{ github.server_url }}
echo "registry=${registry##http*://}" >> "$GITHUB_OUTPUT"
- name: Container Registry Login
uses: docker/login-action@v2
with:
registry: ${{ steps.registry.outputs.registry }}
username: ${{ gitea.actor }}
password: ${{ secrets.PKG_WRITE_TOKEN }}
- name: Build Docker Manifest
run: |
echo docker manifest create ${{ steps.registry.outputs.registry }}/${{ env.GITHUB_REPOSITORY }}:${{ env.VERSION }} \