diff options
author | Linnea Gräf <nea@nea.moe> | 2024-05-04 16:05:22 +0200 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2024-05-04 16:05:22 +0200 |
commit | 2767ef4927a1736087488d2e1c49d7316959f0b9 (patch) | |
tree | af713b8a5da52eb4abcb20ebc3c63a0881ca84dc /.github/workflows/publish.yml | |
parent | 5e4a82b0d96e650483a6dee84d081a49670536ec (diff) | |
download | NotEnoughUpdates-2767ef4927a1736087488d2e1c49d7316959f0b9.tar.gz NotEnoughUpdates-2767ef4927a1736087488d2e1c49d7316959f0b9.tar.bz2 NotEnoughUpdates-2767ef4927a1736087488d2e1c49d7316959f0b9.zip |
Try to fix the repo inclusion
Diffstat (limited to '.github/workflows/publish.yml')
-rw-r--r-- | .github/workflows/publish.yml | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml deleted file mode 100644 index 621072f9..00000000 --- a/.github/workflows/publish.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: Pre-Publish - -on: - push: - tags: - - "*" - -jobs: - build: - env: - GIT_URL: ${{ github.server_url }}/${{ github.repository }}/tree/${{ github.sha }} - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - name: Set up JDK 17 - uses: actions/setup-java@v3 - with: - java-version: 17 - distribution: temurin - - name: Set up gradle cache - uses: gradle/gradle-build-action@v2 - - name: Build with Gradle - run: | - ./gradlew clean - ./gradlew includeBackupRepo - ./gradlew test remapJar - env: - NEU_RELEASE: true - - uses: actions/upload-artifact@v3 - with: - path: build/libs/*.jar - - run: ./.github/workflows/upload-release.sh - env: - GH_TOKEN: ${{ github.token }} |