Skip to content

Commit

Permalink
Fix tautulli pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
reconman committed Nov 9, 2021
1 parent 5dc9cff commit b863286
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ jobs:
run: |
sudo ctr i import --base-name ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} --digests --all-platforms /tmp/plexanisync-image.tar
while IFS= read -r line; do
echo "Pushing $line"
sudo ctr i push --user "${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}" $line
done <<< "${{ steps.meta.outputs.tags }}"
Expand Down Expand Up @@ -120,7 +121,6 @@ jobs:
context: .
file: ./Docker/Tautulli/Dockerfile
platforms: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
outputs: type=oci,dest=/tmp/tautulli-image.tar
Expand All @@ -129,5 +129,6 @@ jobs:
run: |
sudo ctr i import --base-name ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} --digests --all-platforms /tmp/tautulli-image.tar
while IFS= read -r line; do
echo "Pushing $line"
sudo ctr i push --user "${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}" $line
done <<< "${{ steps.meta.outputs.tags }}"

0 comments on commit b863286

Please sign in to comment.