diff --git a/.github/workflows/image.yml b/.github/workflows/image.yml index 7faa657..ea39058 100644 --- a/.github/workflows/image.yml +++ b/.github/workflows/image.yml @@ -60,6 +60,12 @@ jobs: if: ${{ github.event_name != 'pull_request' }} run: | echo "IMG_TAG=$(git describe --tags --abbrev=0)" >> "$GITHUB_ENV" + - name: Registry login + uses: docker/login-action@v3 + with: + registry: ghcr.io + username: nuvolaris + password: ${{ secrets.GITHUB_TOKEN }} - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 with: @@ -68,7 +74,7 @@ jobs: - name: Build and push uses: docker/build-push-action@v5 with: - platforms: linux/amd64,linux/arm64 + platforms: linux/amd64 tags: ghcr.io/openserverless-streamer:${{ env.IMG_TAG }} # For pull requests, export results to the build cache. # Otherwise, push to a registry.