Skip to content

Commit

Permalink
USed @${{ github.head_ref }}
Browse files Browse the repository at this point in the history
  • Loading branch information
sandrohanea committed Oct 10, 2024
1 parent d12ab7c commit 56dc3b1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/cpu-build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,19 @@ on:

jobs:
android:
uses: ./.android-native-build.yml
uses: ./.android-native-build.yml@${{ github.head_ref }}

macos:
uses: ./.macos-native-build.yml
uses: ./.macos-native-build.yml@${{ github.head_ref }}

windows:
uses: ./.windows-native-build.yml
uses: ./.windows-native-build.yml@${{ github.head_ref }}

wasm:
uses: ./.wasm-native-build.yml
uses: ./.wasm-native-build.yml@${{ github.head_ref }}

linux:
uses: ./.linux-native-build.yml
uses: ./.linux-native-build.yml@${{ github.head_ref }}

dotnet-build:
needs:
Expand All @@ -32,5 +32,5 @@ jobs:
- windows
- wasm
- linux
uses: ./dotnet.yml
uses: ./dotnet.yml@${{ github.head_ref }}

0 comments on commit 56dc3b1

Please sign in to comment.