feat: add configurable bottom panel for torrent details v2 #3011
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: build | |
| permissions: | |
| contents: read | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| package: | |
| uses: ./.github/workflows/package.yml | |
| docker: | |
| needs: package | |
| uses: ./.github/workflows/build-docker.yml | |
| with: | |
| push: false | |
| flood-version: pr-${{ github.event.pull_request.number || 'check' }} | |
| flood-tags: | | |
| jesec/flood:pr-${{ github.event.pull_request.number || 'check' }} | |
| platforms: linux/amd64,linux/arm64 | |
| pkg: | |
| needs: package | |
| uses: ./.github/workflows/build-binary.yml | |
| with: | |
| upload-name: pkg-binaries-pr | |
| docker-distroless: | |
| needs: pkg | |
| uses: ./.github/workflows/build-docker-distroless.yml | |
| with: | |
| push: false | |
| binary-artifact: pkg-binaries-pr | |
| flood-version: pr-${{ github.event.pull_request.number || 'check' }} | |
| flood-tags: | | |
| jesec/flood:pr-${{ github.event.pull_request.number || 'check' }}-distroless | |
| platforms: linux/amd64,linux/arm64 | |
| debian: | |
| needs: package | |
| uses: ./.github/workflows/build-debian.yml | |
| build: | |
| runs-on: ubuntu-slim | |
| needs: | |
| - pkg | |
| - docker | |
| - docker-distroless | |
| - debian | |
| if: always() | |
| steps: | |
| - run: | | |
| if [[ "${{ needs.pkg.result }}" != "success" ]]; then | |
| exit 1 | |
| fi | |
| - run: | | |
| if [[ "${{ needs.docker.result }}" != "success" ]]; then | |
| exit 1 | |
| fi | |
| - run: | | |
| if [[ "${{ needs.docker-distroless.result }}" != "success" ]]; then | |
| exit 1 | |
| fi | |
| - run: | | |
| if [[ "${{ needs.debian.result }}" != "success" ]]; then | |
| exit 1 | |
| fi |