Fixed Discord scraper only getting 50 archived threads. #18
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
name: Build Mod Repo and Create Release from Tag | |
on: | |
push: | |
tags: | |
- "modrepo-*" | |
jobs: | |
build_and_publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: "11" | |
distribution: "adopt" | |
- name: Validate Gradle wrapper | |
uses: gradle/wrapper-validation-action@e6e38bacfdf1a337459f332974bb2327a31aaf4b | |
- name: Build with Gradle | |
uses: gradle/gradle-build-action@937999e9cc2425eddc7fd62d1053baf041147db7 | |
with: | |
arguments: Mod_Repo:uberJar | |
- name: Publish Release on GitHub | |
uses: "ncipollo/release-action@v1" | |
with: | |
name: "Mod Repo: ${{ github.ref_name }}" | |
repo: "StarsectorModRepo" | |
generateReleaseNotes: true | |
allowUpdates: true | |
draft: false | |
token: ${{ secrets.WRITE_PAT }} | |
artifacts: "Mod_Repo/dist/*" |