Skip to content

Fix webhook send & edit where the thread ID was set (#2572) #50

Fix webhook send & edit where the thread ID was set (#2572)

Fix webhook send & edit where the thread ID was set (#2572) #50

Workflow file for this run

name: Upload Artifacts
on:
push:
branches: [ master ]
paths:
- 'src/main/**'
- 'build.gradle.kts'
- '.github/workflows/artifacts.yml'
jobs:
build:
name: Build and Upload Artifacts
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: 17
distribution: temurin
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build Artifacts
uses: gradle/[email protected]
with:
arguments: build
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: Artifacts
path: build/libs/*.jar