From 134f26f49671d0849574430ecfdcf16aaba145e3 Mon Sep 17 00:00:00 2001 From: Hikari_Nova <48862050+KasumiNova@users.noreply.github.com> Date: Mon, 8 Aug 2022 00:32:14 +0800 Subject: [PATCH] Delete .github/workflows directory --- .github/workflows/release-publish.yml | 33 --------------------------- 1 file changed, 33 deletions(-) delete mode 100644 .github/workflows/release-publish.yml diff --git a/.github/workflows/release-publish.yml b/.github/workflows/release-publish.yml deleted file mode 100644 index eab061c..0000000 --- a/.github/workflows/release-publish.yml +++ /dev/null @@ -1,33 +0,0 @@ - -name: Build Release - -on: - push: - tags: - - "v*" - -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v2 - - - name: Setup Java - uses: actions/setup-java@v1 - with: - java-version: 8 - - - name: Gradle Build - uses: gradle/gradle-build-action@v1.5.1 - with: - arguments: shadowJar - - - name: Publish Release - uses: xresloader/upload-to-github-release@v1.3.0 - env: - GITHUB_TOKEN: ${{ secrets.TOKEN }} - with: - file: build/production/* - draft: false - tags: true