Skip to content

Fixed the 's' at the end of the gradle project.name #37

Fixed the 's' at the end of the gradle project.name

Fixed the 's' at the end of the gradle project.name #37

name: Publish - Snapshot
on:
push:
branches:
- dev
jobs:
publish:
strategy:
matrix:
java: [ 17 ]
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Validate Gradle Wrapper
uses: gradle/actions/wrapper-validation@v3
- name: Setup JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
- name: Make Gradle Executable
if: ${{ runner.os != 'Windows' }}
run: chmod +x ./gradlew
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
- name: Publish Artifacts
run: ./gradlew publish
env:
AW_REPO_USERNAME: ${{ secrets.REPOSITORY_USER }}
AW_REPO_PASSWORD: ${{ secrets.REPOSITORY_PASSWORD }}
RELEASE: false