Skip to content

Commit

Permalink
adds first one
Browse files Browse the repository at this point in the history
  • Loading branch information
joergi committed Sep 30, 2024
1 parent 5c70521 commit 1bd3cc8
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/testing-regular-issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,21 @@ jobs:
echo "OS_FILE_EXTENSION=ps" >> $GITHUB_ENV
echo "OS_SHELL=pwsh" >> $GITHUB_ENV
- name: some NON Windows specifc variables
if: contains(matrix.os, 'ubuntu') || contains(matrix.os, 'macos')
- name: Set OS-specific variables for Windows
if: matrix.os == 'windows'
run: |
echo "OS_PATH=windows" >> $GITHUB_ENV
echo "OS_FILE_EXTENSION=ps" >> $GITHUB_ENV
echo "OS_SHELL=pwsh" >> $GITHUB_ENV
shell: bash

- name: Set OS-specific variables for macOS and Ubuntu
if: matrix.os != 'windows'
run: |
echo "in NON windows if"
echo "OS_PATH=linux_mac" >> $GITHUB_ENV
echo "OS_FILE_EXTENSION=sh" >> $GITHUB_ENV
echo "OS_SHELL=bash" >> $GITHUB_ENV
shell: bash
- name: print out vars
id: printOutVars
shell: bash
Expand Down

0 comments on commit 1bd3cc8

Please sign in to comment.