Skip to content

Commit

Permalink
fix: correct variable in workflow file
Browse files Browse the repository at this point in the history
  • Loading branch information
nergal-perm committed May 12, 2024
1 parent 775bf4a commit 9cacdd8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/mvn.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
---
name: Build & Test
name: "Build & Test"
on:
push:
branches:
- master
tags-ignore:
- "v*"
pull_request:
branches:
- master
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,15 @@ name: "Release"
on:
push:
tags:
- 'v*'

- "v*"
jobs:
tagged-release:
name: "Tagged Release"
runs-on: {{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ["ubuntu-latest"]
java: [17]

steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
Expand Down

0 comments on commit 9cacdd8

Please sign in to comment.