Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Publish
name: Build

on:
push:
Expand All @@ -15,6 +15,11 @@ jobs:
- uses: actions/checkout@v4

- name: Gradle build
env:
GPG_KEY: ${{ secrets.GPG_KEY }}
GPG_PASS: ${{ secrets.GPG_PASS }}
PUBLISH_USER: ${{ secrets.PUBLISH_USER }}
PUBLISH_PASS: ${{ secrets.PUBLISH_PASS }}
run: |
VERSION=${{ github.ref_name }}
VERSION=${VERSION#v}
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
name: Build & Test

on:
push:
branches:
- master
pull_request:
branches:
- master
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ name: "CodeQL Advanced"

on:
push:
branches: [ "master" ]
tags:
- 'v*'
pull_request:
branches: [ "master" ]
schedule:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
default_bump: patch
tag_prefix: v
custom_release_rules: |
"patch:patch,minor:minor,major:major"
"fix:patch:Bug Fixes,patch:patch:Changes,feature:minor:Features,change:minor:Changes,minor:minor:Changes,breaking:major:Breaking Changes,major:major:Major Changes"
- name: Create a GitHub release
uses: ncipollo/release-action@v1
with:
Expand Down
Loading