Skip to content

fix(deps): update netty monorepo to v4.1.103.final #142

fix(deps): update netty monorepo to v4.1.103.final

fix(deps): update netty monorepo to v4.1.103.final #142

Workflow file for this run

name: Build and Publish
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@v1
- name: Setup Java
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'corretto'
cache: 'gradle'
- name: Build with Gradle
run: |
chmod +x gradlew;
./gradlew check shadowJar;
- name: Publish
if: ${{ github.event_name == 'push' }}
run: |
./gradlew publish
env:
SONATYPE_USER: "${{ secrets.SONATYPE_USER }}"
SONATYPE_PASSWORD: "${{ secrets.SONATYPE_PASSWORD }}"
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: sculk-server
path: server/build/libs