Files
ebusd/.github/workflows/preparerelease.yml
T
2022-02-15 07:11:08 +01:00

41 lines
930 B
YAML

name: Prepare Release
on:
release:
types: [ created ]
workflow_dispatch:
inputs:
limitarch:
description: Limit to this architecture
required: false
type: choice
options:
- ''
- amd64
- '386'
- arm/v7
- arm64
jobs:
prepare-release:
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: build
run: cd contrib/docker && ./update.sh all && LIMITARCH=${{ github.event.inputs.limitarch }} ./build.sh deb
env:
UPLOAD_URL: ${{ secrets.UPLOAD_URL }}
UPLOAD_CREDENTIALS: ${{ secrets.UPLOAD_CREDENTIALS }}