mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-20 22:23:07 +00:00
d53542975e
After the flowzone update to use zstd as compression algorithm for sources there is an error on macos-11 as tar does not support it. Change-type: patch Signed-off-by: Alex Gonzalez <alexg@balena.io>
30 lines
969 B
YAML
30 lines
969 B
YAML
name: Flowzone
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize, closed]
|
|
branches: [main, master]
|
|
pull_request_target:
|
|
types: [opened, synchronize, closed]
|
|
branches: [main, master]
|
|
|
|
jobs:
|
|
flowzone:
|
|
name: Flowzone
|
|
uses: product-os/flowzone/.github/workflows/flowzone.yml@v4.7.1
|
|
# prevent duplicate workflow executions for pull_request and pull_request_target
|
|
if: |
|
|
(
|
|
github.event.pull_request.head.repo.full_name == github.repository &&
|
|
github.event_name == 'pull_request'
|
|
) || (
|
|
github.event.pull_request.head.repo.full_name != github.repository &&
|
|
github.event_name == 'pull_request_target'
|
|
)
|
|
secrets: inherit
|
|
with:
|
|
custom_runs_on: '[["self-hosted","Linux","distro:focal","X64"],["self-hosted","Linux","distro:focal","ARM64"],["macos-12"],["windows-2019"]]'
|
|
repo_config: true
|
|
repo_description: "The official balena CLI tool."
|
|
github_prerelease: true
|