Skip to content

Commit

Permalink
Build release candidate.
Browse files Browse the repository at this point in the history
  • Loading branch information
baron1405 committed Apr 15, 2024
1 parent 87558b0 commit ab46004
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
custom: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=donations%40cthing.com&item_name=filevisitor&currency_code=USD&source=url
24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:

permissions:
contents: read

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
with:
gradle-version: wrapper
- name: Run clean build javadoc
run: ./gradlew clean build javadoc
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ plugins {
}

val baseVersion = "1.0.0"
val isSnapshot = true
val isSnapshot = false

val isCIServer = System.getenv("CTHING_CI") != null
val buildNumber = if (isCIServer) System.currentTimeMillis().toString() else "0"
Expand Down

0 comments on commit ab46004

Please sign in to comment.