Files
ebusd/.github/workflows/build.yaml
T
Workflow config file is invalid. Please check your config file: model.ReadWorkflow: yaml: line 12: did not find expected '-' indicator
2021-11-10 21:07:43 +01:00

33 lines
747 B
YAML

name: Build
on:
push:
branches: [ dockerbuildtest ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
- name: set up QEMU
uses: docker/setup-qemu-action@v1
- name: set up buildx
id: buildx
uses: docker/setup-buildx-action@v1
with:
buildkitd-flags: --debug
- name: platforms
run: echo ${{ steps.buildx.outputs.platforms }}
- name: build
run: cd contrib/docker && ./build.sh release
# - name: configure and build
# run: ./make_debian.sh
# - name: upload result
# uses: actions/upload-artifact@v2
# with:
# name: debian packages
# path: ebusd*.deb