upload to updater

This commit is contained in:
ajgeiss0702
2022-02-28 10:51:25 -07:00
parent 7fe1900043
commit c3bea940a5
+17 -2
View File
@@ -24,7 +24,7 @@ jobs:
- name: Build with Gradle - name: Build with Gradle
uses: gradle/gradle-build-action@937999e9cc2425eddc7fd62d1053baf041147db7 uses: gradle/gradle-build-action@937999e9cc2425eddc7fd62d1053baf041147db7
with: with:
arguments: :free:shadowJar arguments: :free:shadowJar :premim:shadowJar
- name: Upload plugin jar artifact - name: Upload plugin jar artifact
uses: actions/upload-artifact@v2.3.1 uses: actions/upload-artifact@v2.3.1
with: with:
@@ -59,4 +59,19 @@ jobs:
- name: Deploy api with Gradle - name: Deploy api with Gradle
run: './gradlew :api:publish' run: './gradlew :api:publish'
- name: Deploy common with Gradle - name: Deploy common with Gradle
run: './gradlew :common:publish' run: './gradlew :common:publish'
updater:
runs-on: ubuntu-latest
environment: upload-to-updater
if: github.ref == 'refs/heads/master'
steps:
- uses: actions/checkout@v2
- uses: actions/download-artifact@v2
with:
name: build-files
- run: cp free/build/libs/ajQueue*.jar jars/
- run: cp premium/build/libs/ajQueue*.jar jars/
- run: cd jars
- run: files=(*)
- run: curl -i -F "submit=true" -F "secret=${{ secrets.UPLOAD_TOKEN }}" -F "file=@${files[0]}" https://ajg0702.us/pl/updater/upload.php
- run: curl -i -F "submit=true" -F "secret=${{ secrets.UPLOAD_TOKEN }}" -F "file=@${files[1]}" https://ajg0702.us/pl/updater/upload.php