From aaa200e288da257e9e62c27863586cfeb9ba8015 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Thu, 5 Dec 2024 07:38:27 +0100 Subject: [PATCH] name: ${{ runner.os }} on ${{ runner.arch }} --- .github/workflows/macOS_on_demand.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/macOS_on_demand.yml b/.github/workflows/macOS_on_demand.yml index e69a995..76f4b33 100644 --- a/.github/workflows/macOS_on_demand.yml +++ b/.github/workflows/macOS_on_demand.yml @@ -12,6 +12,10 @@ jobs: # arch: [arm64, x64] runs-on: ${{ matrix.os }} steps: + - name: ${{ runner.os }} on ${{ runner.arch }} + run: | + echo "${{ runner.os }} on ${{ runner.arch }}" + echo ${{ runner.os }} on ${{ runner.arch }} - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: