forked from Meano/LoginLocationFix
-
Notifications
You must be signed in to change notification settings - Fork 1
31 lines (27 loc) · 766 Bytes
/
build.yml
File metadata and controls
31 lines (27 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: Build LoginLocationFix
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
if: "github.actor != 'dependabot[bot]'"
steps:
- uses: actions/checkout@main
- name: Setup java
uses: actions/setup-java@main
with:
java-version: 21
distribution: temurin
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build
run: ./gradlew build
- name: Release Artifacts
uses: marvinpinto/action-automatic-releases@master
with:
title: "LoginLocationFix v1.4"
automatic_release_tag: "build"
repo_token: "${{ secrets.GITHUB_TOKEN }}"
files: "build/libs"
prerelease: false