-
Notifications
You must be signed in to change notification settings - Fork 2
32 lines (30 loc) · 1.09 KB
/
QEMU platforms.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# This is a basic workflow to help you get started with Actions
name: QEMU platforms
on:
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build_push:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
#repository: 'schklom/TTRSS-mirror'
ref: 'TTRSS-docker' # branch
# https://github.com/docker/setup-qemu-action#usage
- name: Set up QEMU
uses: docker/[email protected]
#with:
#image: tonistiigi/binfmt:latest
#platforms: all
#platforms: arm/v7
# https://github.com/marketplace/actions/docker-setup-buildx
- name: Set up Docker Buildx
id: buildx
uses: docker/[email protected]
#with:
#install: true
- name: Available platforms # linux/amd64,linux/arm64,linux/riscv64,linux/ppc64le,linux/s390x,linux/386,linux/arm/v7,linux/arm/v6
run: echo ${{ steps.buildx.outputs.platforms }}