2020-08-10 15:01:00 +00:00
|
|
|
# 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: Fabric Snapshot CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: fabric-snapshot
|
|
|
|
pull_request:
|
|
|
|
branches: fabric-snapshot
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2020-08-10 15:03:42 +00:00
|
|
|
name: Fetching branches
|
|
|
|
with:
|
|
|
|
ref: 'fabric-snapshot' # Branch to build from
|
2020-08-10 15:01:00 +00:00
|
|
|
- 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
|
2020-08-11 08:43:59 +00:00
|
|
|
run: chmod +x ./.github/workflows/renaming.sh
|
2020-08-10 15:01:00 +00:00
|
|
|
- name: Running renaming script
|
2020-08-10 15:06:32 +00:00
|
|
|
run: ./.github/workflows/renaming.sh
|
2020-08-10 15:01:00 +00:00
|
|
|
|
|
|
|
# Artifact upload
|
|
|
|
- name: Uploading artifacts
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
#name: ${{ env.BUILDNAME }}.jar
|
2020-08-11 09:07:34 +00:00
|
|
|
name: UNZIP_ME_${{ env.BUILDNAME }}
|
2020-08-10 15:01:00 +00:00
|
|
|
path: build/libs/${{ env.BUILDNAME }}.jar
|