Skip to content

Commit

Permalink
fix(ci): do not depend on number of procesors with job name (#1863)
Browse files Browse the repository at this point in the history
  • Loading branch information
vpavlin committed Jul 31, 2023
1 parent 069c1ad commit c560af1
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/release-assets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,23 @@ on:
- 'v*' # "e.g. v0.4"

workflow_dispatch:


env:
NPROC: 2

jobs:
build-and-upload:
strategy:
matrix:
env:
- { NPROC: 2 }
os: [ubuntu-latest, macos-latest]
arch: [amd64]
include:
- os: macos-latest
experimental: false
arch: arm64
runs-on: ${{ matrix.os }}
env: ${{ matrix.env }}
timeout-minutes: 60

name: ${{ matrix.os }} - ${{ matrix.env.NPROC }} processes
name: ${{ matrix.os }} - ${{ matrix.arch }}

steps:
- name: Checkout code
Expand Down

0 comments on commit c560af1

Please sign in to comment.