# This workflow will build a Java project with Gradle # For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle name: Forge CI on: push: branches: froge pull_request: branches: froge jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 name: Fetching branches with: ref: 'froge' # Branch to build from - name: Set up JDK 1.8 uses: actions/setup-java@v1 with: java-version: 1.8 - name: Grant execute permission for gradlew run: chmod +x gradlew - name: Build with Gradle run: ./gradlew build - name: Execute permission for renaming script run: chmod +x ./.github/workflows/renaming.sh - name: Running renaming script run: ./.github/workflows/renaming.sh # Artifact upload - name: Uploading artifacts uses: actions/upload-artifact@v2 with: #name: ${{ env.BUILDNAME }}.jar name: UNZIP_ME_${{ env.BUILDNAME }} path: build/libs/${{ env.BUILDNAME }}.jar