Skip to content

added thrustcurve.org data query, moderation system, fixes for a bunc… #62

added thrustcurve.org data query, moderation system, fixes for a bunc…

added thrustcurve.org data query, moderation system, fixes for a bunc… #62

Workflow file for this run

name: Main
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup JDK 14
uses: actions/setup-java@v1
with:
java-version: 14

Check failure on line 14 in .github/workflows/release.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yaml

Invalid workflow file

You have an error in your yaml syntax on line 14
- name: Build
run: |
echo "VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
# ./gradlew bot:check
./gradlew bot:jar
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: bot/build/libs/corrupted-mainframe.jar
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}