Skip to content
This repository has been archived by the owner on Jan 12, 2023. It is now read-only.

Commit

Permalink
fix: trimming issue with version (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
jef authored Aug 24, 2020
1 parent d0d481d commit 16b8a77
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
java-version: [8, 11]
java-version: [11]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Forest Night - JetBrains Theme [![ci](https://github.com/jef/forest-night-jetbrains/workflows/ci/badge.svg?branch=master)](https://github.com/jef/forest-night-jetbrains/actions?query=workflow%3Aci)
# Forest Night - JetBrains Theme [![cd](https://github.com/jef/forest-night-jetbrains/workflows/cd/badge.svg)](https://github.com/jef/forest-night-jetbrains/actions?query=workflow%3Acd+branch%3Amaster)

[![](https://img.shields.io/jetbrains/plugin/v/14491)](https://plugins.jetbrains.com/plugin/14491-forest-night)
[![](https://img.shields.io/jetbrains/plugin/d/14491)](https://plugins.jetbrains.com/plugin/14491-forest-night)
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
id("org.kordamp.gradle.markdown") version "2.2.0"
}

version = file("version.txt").readText()
version = file("version.txt").readText().trim()
group = "com.github.jef"

repositories {
Expand Down

0 comments on commit 16b8a77

Please sign in to comment.