File: push.yml

package info (click to toggle)
ares 147%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 35,244 kB
  • sloc: cpp: 334,263; ansic: 98,696; sh: 123; makefile: 31
file content (27 lines) | stat: -rw-r--r-- 634 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
name: Push
on:
  push
concurrency:
  group: '${{ github.workflow }} @ ${{ github.head_ref || github.ref }}'
  cancel-in-progress: true
permissions:
  contents: write
jobs:
  build:
    name: Build ares (primary)
    uses: ./.github/workflows/build.yml
    secrets: inherit
    with:
      codesign: true
      official: ${{ github.ref_name == 'master' || github.ref_type == 'tag' }}
  build-aux:
    name: Build ares (auxiliary)
    uses: ./.github/workflows/build-aux.yml
    secrets: inherit
  release:
    name: Release
    needs: build
    secrets: inherit
    uses: ./.github/workflows/release.yml
    with:
      notarize: true