Skip to content

Commit

Permalink
more builds with upload dry-run
Browse files Browse the repository at this point in the history
  • Loading branch information
fbzli committed Oct 7, 2024
1 parent 9f7f9ee commit 59f60be
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ on: [ push, workflow_dispatch ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
module: ["examplekts", "examplegroovy"]
task: ["assemble", "uploadToAlpakaTeschtRelease --alpaka-dryrun"]
steps:
# Checkout repository
- name: Checkout
Expand All @@ -17,10 +21,6 @@ jobs:
distribution: 'zulu'
java-version: '17'

# Run the Gradle Build task
- name: Build Kts Example App
run: ./gradlew clean :examplekts:assemble

# Run the Gradle Build task
- name: Build Groovy Example App
run: ./gradlew clean :examplegroovy:assemble
# Run the Gradle task
- name: Run :${{ matrix.module }}:${{ matrix.task }}
run: ./gradlew clean :${{ matrix.module }}:${{ matrix.task }}

0 comments on commit 59f60be

Please sign in to comment.