Skip to content

Commit e88bb2d

Browse files
authored
fix sbt workflow (#64)
* fix sbt workflow * fix * update
1 parent f8733a8 commit e88bb2d

File tree

2 files changed

+3
-20
lines changed

2 files changed

+3
-20
lines changed

.github/workflows/sbt.yml

Lines changed: 2 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,8 @@
11
name: Scala CI
22

3-
# Support "official releases" on master, and release fixes on release/ prefixed branches
43
on:
54
push:
6-
branches:
7-
- 'master'
8-
- 'releases/**'
9-
- '!releases/**-alpha'
10-
paths-ignore:
11-
- 'docs/**'
12-
- 'README.md'
135
pull_request:
14-
branches:
15-
- 'master'
16-
# trigger on new branch/tag creation
17-
create: []
186

197
jobs:
208
build:
@@ -41,10 +29,5 @@ jobs:
4129
path: ~/.sbt
4230
key: ${{ runner.os }}-sbt-${{ hashFiles('**/*.sbt') }}
4331
- name: Run tests
44-
run: sbt ^test ^scripted
45-
#- name: Publish
46-
# if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/v')
47-
# env:
48-
# BINTRAY_USER: ${{ secrets.BINTRAY_USER }}
49-
# BINTRAY_PASS: ${{ secrets.BINTRAY_PASS }}
50-
# run: sbt ^publish
32+
run: sbt ^test
33+
#run: sbt ^test ^scripted

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ lazy val `sbt-openapi-generator` = (project in file("."))
1717
inThisBuild(List(
1818
homepage := Some(url("https://openapi-generator.tech")),
1919

20-
organization := "org.openapitools",
20+
organization := "org.openapitools.sbt-openapi-generator",
2121
organizationName := "OpenAPI-Generator Contributors",
2222
organizationHomepage := Some(url("https://github.com/OpenAPITools")),
2323

0 commit comments

Comments
 (0)