Fix asset naming in release script #19
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Latest Build | |
on: | |
push: | |
branches: [master] | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v2.3.4 | |
- | |
name: Configure Java | |
uses: actions/setup-java@v4.0.0 | |
with: | |
java-version: 17 | |
distribution: oracle | |
- | |
name: Tests | |
run: ./gradlew check |