EasyAuth/.github/workflows/ci_fabric-stable.yml

42 lines
1.1 KiB
YAML
Raw Normal View History

2020-04-30 08:28:48 +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
2020-08-10 15:03:42 +00:00
name: Fabric CI
2020-04-30 08:28:48 +00:00
on:
push:
2020-08-10 15:03:42 +00:00
branches: fabric
2020-04-30 08:28:48 +00:00
pull_request:
2020-08-10 15:03:42 +00:00
branches: fabric
2020-04-30 08:28:48 +00:00
jobs:
build:
runs-on: ubuntu-latest
steps:
2020-08-11 09:01:53 +00:00
- uses: actions/checkout@v2
name: Fetching branches
with:
ref: 'fabric'
- 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
2020-08-10 15:03:42 +00:00
2020-08-11 09:01:53 +00:00
# Artifact upload
- name: Uploading artifacts
uses: actions/upload-artifact@v2
with:
#name: ${{ env.BUILDNAME }}.jar
name: UNZIP_ME_${{ env.BUILDNAME }}.zip
path: build/libs/${{ env.BUILDNAME }}.jar