Skip to content

Use the newest idevice for async and heartbeat intervals #57

Use the newest idevice for async and heartbeat intervals

Use the newest idevice for async and heartbeat intervals #57

Workflow file for this run

name: build
on:
push:
jobs:
buildx:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
- name: Log in to the Container registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.TOKEN }}
- name: Build and push
uses: docker/build-push-action@v2
with:
context: .
push: true
platforms: linux/amd64,linux/arm64,linux/arm/v7
tags: ${{ secrets.TAGS }}
cache-from: type=gha
cache-to: type=gha,mode=max