Skip to content

Commit

Permalink
Ensure "prepare environment" always has a name.
Browse files Browse the repository at this point in the history
  • Loading branch information
fniephaus committed Oct 17, 2023
1 parent f7e3e79 commit 5570c83
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/test-native-gradle-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ jobs:
steps:
- name: "☁️ Checkout repository"
uses: actions/checkout@v4
- uses: ./.github/actions/prepare-environment
- name: "🔧 Prepare environment"
uses: ./.github/actions/prepare-environment
with:
java-version: ${{ matrix.java-version }}
github-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -92,7 +93,8 @@ jobs:
steps:
- name: "☁️ Checkout repository"
uses: actions/checkout@v4
- uses: ./.github/actions/prepare-environment
- name: "🔧 Prepare environment"
uses: ./.github/actions/prepare-environment
with:
java-version: ${{ matrix.java-version }}
github-token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -117,7 +119,8 @@ jobs:
steps:
- name: "☁️ Checkout repository"
uses: actions/checkout@v4
- uses: ./.github/actions/prepare-environment
- name: "🔧 Prepare environment"
uses: ./.github/actions/prepare-environment
with:
java-version: ${{ matrix.java-version }}
github-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/test-native-maven-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ jobs:
steps:
- name: "☁️ Checkout repository"
uses: actions/checkout@v4
- uses: ./.github/actions/prepare-environment
- name: "🔧 Prepare environment"
uses: ./.github/actions/prepare-environment
with:
java-version: ${{ matrix.java-version }}
github-token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -56,7 +57,8 @@ jobs:
steps:
- name: "☁️ Checkout repository"
uses: actions/checkout@v4
- uses: ./.github/actions/prepare-environment
- name: "🔧 Prepare environment"
uses: ./.github/actions/prepare-environment
with:
java-version: ${{ matrix.java-version }}
github-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 5570c83

Please sign in to comment.