From 9cacdd8bba4b928d6c1ffbcf77945ccf73fc765e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=95=D0=B2=D0=B3=D0=B5=D0=BD=D0=B8=D0=B9=20=D0=A2=D0=B5?= =?UTF-8?q?=D1=80=D0=B5=D1=85=D0=BE=D0=B2?= Date: Sun, 12 May 2024 12:27:47 +0400 Subject: [PATCH] fix: correct variable in workflow file --- .github/workflows/mvn.yml | 4 +++- .github/workflows/release.yml | 6 ++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/mvn.yml b/.github/workflows/mvn.yml index 565149e..a8f0baf 100644 --- a/.github/workflows/mvn.yml +++ b/.github/workflows/mvn.yml @@ -1,9 +1,11 @@ --- -name: Build & Test +name: "Build & Test" on: push: branches: - master + tags-ignore: + - "v*" pull_request: branches: - master diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7b2553c..3b74d94 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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