add package publishing and CI/CD using Gitea actions #5

Merged
tueem merged 10 commits from feat/ci-cd into master 2024-11-16 12:41:25 +00:00
Showing only changes of commit b28406b16b - Show all commits

@ -4,7 +4,7 @@ on:
push: push:
jobs: jobs:
Gradle Build: Gradle-Build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@ -31,10 +31,11 @@ jobs:
- name: Build - name: Build
run: chmod +x gradlew; ./gradlew assemble run: chmod +x gradlew; ./gradlew assemble
- name: Move artifacts
run: mkdir artifacts; mv lib/build/libs/*.jar artifacts; mv wrapper/javacord/build/libs/*.jar artifacts;
- name: Upload artifact - name: Upload artifact
uses: christopherhx/gitea-upload-artifact@v4 uses: christopherhx/gitea-upload-artifact@v4
with: with:
name: artifacts name: artifacts
path: | path: artifacts
lib/build/libs/*.jar
wrapper/javacord/build/libs/*.jar