remove double maven build for reporting
This commit is contained in:
parent
3940dcb280
commit
0ccc5d2164
1 changed files with 13 additions and 0 deletions
13
.github/workflows/buildReporting.yml
vendored
13
.github/workflows/buildReporting.yml
vendored
|
@ -16,6 +16,19 @@ jobs:
|
||||||
maven-build-reporting:
|
maven-build-reporting:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
- name: Get short SHA
|
||||||
|
uses: benjlevesque/short-sha@v2.1
|
||||||
|
id: short-sha
|
||||||
|
- name: Store short SHA as environment variable
|
||||||
|
run: echo $SHA
|
||||||
|
env:
|
||||||
|
SHA: ${{ steps.short-sha.outputs.sha }}
|
||||||
|
- name: Set env
|
||||||
|
run: echo "TAG_NAME=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
|
||||||
|
- name: Test tag name
|
||||||
|
run: |
|
||||||
|
echo $TAG_NAME
|
||||||
|
echo ${{ env.TAG_NAME }}
|
||||||
-
|
-
|
||||||
name: Checkout repository
|
name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
Loading…
Reference in a new issue