Skip to content

Commit

Permalink
Update rpcs3.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
illusion0001 authored Jun 12, 2024
1 parent f2f3da6 commit c27ca87
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/rpcs3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,14 +91,17 @@ jobs:
run: .ci/setup-windows.sh

- name: Export Variables
shell: bash
run: |
while IFS='=' read -r key val; do
Get-Content ".ci/ci-vars.env" | ForEach-Object {
# Skip over lines containing comments.
[ "${key##\#*}" ] || continue
echo "$key=$val"
echo "$key=$val" >> ${{ github.env }}
done < ".ci/ci-vars.env"
if ($_ -notmatch '^\s*#') {
$line = $_ -split '='
$key = $line[0]
$val = $line[1]
echo "$key=$val"
echo "$key=$val" >> $env:GITHUB_ENV
}
}
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@main
Expand Down

0 comments on commit c27ca87

Please sign in to comment.