diff --git a/.github/workflows/pre-release.yml b/.github/workflows/latest-release.yml similarity index 94% rename from .github/workflows/pre-release.yml rename to .github/workflows/latest-release.yml index 9fe8e5b..827ab59 100644 --- a/.github/workflows/pre-release.yml +++ b/.github/workflows/latest-release.yml @@ -44,5 +44,5 @@ jobs: title: "🔥 Unstable Edition 🔥" files: | LICENSE - sync-script/build/dist/*.jar - admin/build/dist/*.jar \ No newline at end of file + sync-script/build/dist/* + admin/build/dist/* \ No newline at end of file diff --git a/.github/workflows/tagged-release.yml b/.github/workflows/tagged-release.yml index 0c9afa4..77010e6 100644 --- a/.github/workflows/tagged-release.yml +++ b/.github/workflows/tagged-release.yml @@ -35,13 +35,9 @@ jobs: - name: 🛡️ Build the Minimized JAR with Proguard run: ./gradlew minimizedJar -i - # TODO: This GitHub action is no longer maintained https://github.com/marvinpinto/actions/commit/40312c52f0ca0d0589b25e8f5172a3613f0759c3 - name: ⬆️ Upload the assets - uses: "marvinpinto/action-automatic-releases@latest" + uses: AButler/upload-release-assets@v3.0 with: - repo_token: "${{ secrets.GITHUB_TOKEN }}" - prerelease: false - files: | - LICENSE - sync-script/build/dist/*.jar - admin/build/dist/*.jar \ No newline at end of file + repo-token: ${{ secrets.GITHUB_TOKEN }} + files: "LICENSE;sync-script/build/dist/*;admin/build/dist/*" + release-tag: ${{ github.ref_name }} \ No newline at end of file