mirror of
https://github.com/sockspls/badfish
synced 2025-05-02 01:29:36 +00:00

when a release is made with a tag matching sf_* the binaries will also be uploaded to the release as assets. closes https://github.com/official-stockfish/Stockfish/pull/4596 No functional change.
26 lines
739 B
YAML
26 lines
739 B
YAML
name: Stockfish
|
|
on:
|
|
push:
|
|
tags:
|
|
- '*'
|
|
branches:
|
|
- master
|
|
- tools
|
|
- github_ci
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
- tools
|
|
jobs:
|
|
Sanitizers:
|
|
uses: ./.github/workflows/stockfish_sanitizers.yml
|
|
Tests:
|
|
uses: ./.github/workflows/stockfish_test.yml
|
|
Compiles:
|
|
uses: ./.github/workflows/stockfish_compile_test.yml
|
|
Binaries:
|
|
if: github.ref == 'refs/heads/master' || (startsWith(github.ref_name, 'sf_') && github.ref_type == 'tag')
|
|
uses: ./.github/workflows/stockfish_binaries.yml
|
|
ARM_Binaries:
|
|
if: github.ref == 'refs/heads/master' || (startsWith(github.ref_name, 'sf_') && github.ref_type == 'tag')
|
|
uses: ./.github/workflows/stockfish_arm_binaries.yml
|