diff --git a/.github/workflows/test-build-and-push.yaml b/.github/workflows/test-build-and-push.yaml new file mode 100644 index 0000000..6b467d0 --- /dev/null +++ b/.github/workflows/test-build-and-push.yaml @@ -0,0 +1,50 @@ +name: Test Build & Push +on: + push: + +jobs: + job01: + name: Build and publish + runs-on: ubuntu-latest + steps: + - + name: Checkout + uses: actions/checkout@v3 + with: + ref: main + - + name: Set up QEMU + uses: docker/setup-qemu-action@v2 + - + name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 + - + name: Docker meta + id: meta + uses: docker/metadata-action@v4 + with: + images: | + ${{ secrets.DOCKERHUB_NAMESPACE }}/ngrok-plex + flavor: | + latest=false + tags: | + type=raw,value=test + - + name: Login to DockerHub + uses: docker/login-action@v2 + with: + username: ${{ secrets.DOCKERHUB_USER }} + password: ${{ secrets.DOCKERHUB_ACCESS_TOKEN }} + - + name: Build and push + uses: docker/build-push-action@v4 + with: + context: ./ + platforms: linux/amd64, linux/arm64, linux/arm/v7, linux/386 + push: true + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} + cache-from: | + type=registry,ref=${{ secrets.DOCKERHUB_NAMESPACE }}/ngrok-plex:buildcache.test + cache-to: | + type=registry,ref=${{ secrets.DOCKERHUB_NAMESPACE }}/ngrok-plex:buildcache.test,mode=max