diff options
author | Eryk Ruta <70776766+kingstefan26@users.noreply.github.com> | 2022-11-04 15:13:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-04 23:13:41 +0900 |
commit | 4ba2c8dd567d3d83f0cf80b2961f3083dab230c9 (patch) | |
tree | 4d8036fcf147f1ecac76c7b3480807964cc8b643 | |
parent | 923e39f3c1d739cf86fa98d179e6521ade71bdec (diff) | |
download | Skyblock-Dungeons-Guide-4ba2c8dd567d3d83f0cf80b2961f3083dab230c9.tar.gz Skyblock-Dungeons-Guide-4ba2c8dd567d3d83f0cf80b2961f3083dab230c9.tar.bz2 Skyblock-Dungeons-Guide-4ba2c8dd567d3d83f0cf80b2961f3083dab230c9.zip |
fix it? maybe (#71)
-rw-r--r-- | .github/workflows/beta.yml | 48 |
1 files changed, 26 insertions, 22 deletions
diff --git a/.github/workflows/beta.yml b/.github/workflows/beta.yml index 5cbbe58f..b8f952d3 100644 --- a/.github/workflows/beta.yml +++ b/.github/workflows/beta.yml @@ -9,25 +9,29 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - name: Set up JDK 16 - uses: actions/setup-java@v3 - with: - java-version: '16' - distribution: 'adopt' - cache: 'gradle' - - name: Grant execute permission for gradlew - run: chmod +x gradlew - - name: Download hychat as a dependency - run: mkdir jars && wget https://cdn.discordapp.com/attachments/782825804983566356/791708191519932426/Hychat-1.12.1-BETA.jar -O jars/Hychat-1.12.1-BETA.jar - - name: Build with Gradle - run: ./gradlew build - - uses: actions/upload-artifact@v2 - if: github.event_name == 'workflow_dispatch' - with: - name: Compiled-files - path: build/libs/*.jar - - name: Upload to beta webhook - env: - BETA_WEBHOOK: ${{ secrets.BETA_WEBHOOK }} - run: path=$(find ./build/ -type d -name "libs" -exec find "{}" -type f -name "dungeonsguide-*-all.jar" \;) curl -F "file1=@$path" "$BETA_WEBHOOK"
\ No newline at end of file + - uses: actions/checkout@v3 + - name: Set up JDK 16 + uses: actions/setup-java@v3 + with: + java-version: '16' + distribution: 'adopt' + cache: 'gradle' + - name: Grant execute permission for gradlew + run: chmod +x gradlew + - name: Download hychat as a dependency + run: mkdir jars && wget https://cdn.discordapp.com/attachments/782825804983566356/791708191519932426/Hychat-1.12.1-BETA.jar -O jars/Hychat-1.12.1-BETA.jar + - name: Build with Gradle + run: ./gradlew build + - uses: actions/upload-artifact@v2 + if: github.event_name == 'workflow_dispatch' + with: + name: Compiled-files + path: build/libs/*.jar + - name: Upload to beta webhook + env: + BETA_WEBHOOK: ${{ secrets.BETA_WEBHOOK }} + # run: curl -F "file1=@./build/lib/dungeonsguide-3.8.0.jar" "$BETA_WEBHOOK" + run: | + BUILDMODPATH=$(find ./build/ -type d -name "libs" -exec find "{}" -type f -name "dungeonsguide-*-all.jar" \;) + echo $BUILDMODPATH + curl -F "file1=@$BUILDMODPATH" "$BETA_WEBHOOK"
\ No newline at end of file |