Skip to content

chore(deps): update homebrew/actions digest to d9eb31e #252

chore(deps): update homebrew/actions digest to d9eb31e

chore(deps): update homebrew/actions digest to d9eb31e #252

# This workflow is trying to display all the environment variables that are
# available to the job of all the available images, https://github.com/actions/runner-images
# It runs on demand
name: display-github-context
on:
workflow_dispatch:
pull_request:
branches:
- main
jobs:
nix_jobs:
strategy:
matrix:
os:
- ubuntu-20.04
- ubuntu-22.04
- macos-11
- macos-12
- macos-13
# custom runner
# - macos-13-xl
runs-on: ${{ matrix.os }}
steps:
- run: |
echo "RUNNER_OS: $RUNNER_OS"
echo "RUNNER_ARCH: $RUNNER_ARCH"
echo 'GITHUB_CONTEXT is "${{ toJSON(github) }}"'
windows_jobs:
strategy:
matrix:
os:
- windows-2019
- windows-2022
runs-on: ${{ matrix.os }}
steps:
- run: |
echo "RUNNER_OS: $env:RUNNER_OS"
echo "RUNNER_ARCH: $env:RUNNER_ARCH"
echo 'GITHUB_CONTEXT is "${{ toJSON(github) }}"'