mirror of
https://github.com/mikefarah/yq.git
synced 2026-07-10 16:55:40 +00:00
28 lines
527 B
YAML
28 lines
527 B
YAML
name: Test release-deb.sh
|
|
on:
|
|
push:
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
|
|
build:
|
|
name: Build
|
|
runs-on: ubuntu-22.04
|
|
strategy:
|
|
matrix:
|
|
platform: [ x86_64, aarch64]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Build
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install --no-install-recommends -y qemu-user-static binfmt-support
|
|
scripts/release-deb.sh 999 --platform ${{ matrix.platform }}
|