Skip to content

Commit

Permalink
fix-ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Till0196 committed Nov 12, 2024
1 parent f7a7ddf commit 2d0364c
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@ on:

name: CI

env:
REGISTRY_IMAGE: ghcr.io/${{ github.repository }}

jobs:
build-image:
name: Build and push image
Expand All @@ -29,6 +26,7 @@ jobs:
run: |
platform=${{ matrix.platform }}
echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV
echo "REGISTRY_IMAGE=`echo ghcr.io/${{github.repository}} | tr '[:upper:]' '[:lower:]'`" >> ${GITHUB_ENV}
- name: Install Docker and start Colima on macOS
if: matrix.os == 'macos-latest'
Expand Down Expand Up @@ -94,6 +92,10 @@ jobs:
needs:
- build-image
steps:
- name: Prepare
run: |
echo "REGISTRY_IMAGE=`echo ghcr.io/${{github.repository}} | tr '[:upper:]' '[:lower:]'`" >> ${GITHUB_ENV}
- name: Download digests
uses: actions/download-artifact@v4
with:
Expand Down

0 comments on commit 2d0364c

Please sign in to comment.