Skip to content

Commit 5ba544d

Browse files
committed
fix: update release with safe dir
classic github poop MS needs to fix these classic windows errors ...
1 parent badabae commit 5ba544d

File tree

3 files changed

+9
-11
lines changed

3 files changed

+9
-11
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,10 @@ jobs:
4444
run: |
4545
apt update && apt install -y jq git
4646
git config --global --add safe.directory "$GITHUB_WORKSPACE"
47-
- name: make test
48-
run: |
49-
echo $PWD
50-
ls -lat
5147
git config user.email ${{ github.actor }}[email protected]
5248
git config user.name ${{ github.actor }}
49+
- name: make test
50+
run: |
5351
make REVISION=$GITHUB_SHA test
5452
- name: Publish Junit style Test Report
5553
uses: mikepenz/action-junit-report@v3

.github/workflows/release.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -42,17 +42,15 @@ jobs:
4242
steps:
4343
- uses: actions/checkout@v3
4444
with:
45-
fetch-depth: 0
45+
fetch-depth: 1
4646
- name: install deps
4747
run: |
48-
apt update && apt install jq -y
49-
make REVISION=$GITHUB_SHA install
50-
- name: release library
51-
run: |
52-
echo $PWD
53-
ls -lat
48+
apt-get update && apt-get install jq git -y
49+
git config --global --add safe.directory "$GITHUB_WORKSPACE"
5450
git config user.email ${{ github.actor }}[email protected]
5551
git config user.name ${{ github.actor }}
52+
- name: release library
53+
run: |
5654
make GIT_TAG=${SEMVER} REVISION=$GITHUB_SHA tag
5755
- name: release binary
5856
run: |

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010

1111
[![Vulnerabilities](https://sonarcloud.io/api/project_badges/measure?project=dnitsch_configmanager&metric=vulnerabilities)](https://sonarcloud.io/summary/new_code?id=dnitsch_configmanager)
1212

13+
[![Coverage](https://sonarcloud.io/api/project_badges/measure?project=dnitsch_configmanager&metric=coverage)](https://sonarcloud.io/summary/new_code?id=dnitsch_configmanager)
14+
1315
Package used for retrieving application settings from various sources.
1416

1517
Currently supported variable and secrets implementations:

0 commit comments

Comments
 (0)