Skip to content

Commit

Permalink
fix: update release with safe dir
Browse files Browse the repository at this point in the history
classic github poop

MS needs to fix these classic windows errors ...
  • Loading branch information
dnitsch committed Feb 7, 2023
1 parent badabae commit 5ba544d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 11 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,10 @@ jobs:
run: |
apt update && apt install -y jq git
git config --global --add safe.directory "$GITHUB_WORKSPACE"
- name: make test
run: |
echo $PWD
ls -lat
git config user.email ${{ github.actor }}-ci@gha.org
git config user.name ${{ github.actor }}
- name: make test
run: |
make REVISION=$GITHUB_SHA test
- name: Publish Junit style Test Report
uses: mikepenz/action-junit-report@v3
Expand Down
12 changes: 5 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,17 +42,15 @@ jobs:
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
fetch-depth: 1
- name: install deps
run: |
apt update && apt install jq -y
make REVISION=$GITHUB_SHA install
- name: release library
run: |
echo $PWD
ls -lat
apt-get update && apt-get install jq git -y
git config --global --add safe.directory "$GITHUB_WORKSPACE"
git config user.email ${{ github.actor }}-ci@gha.org
git config user.name ${{ github.actor }}
- name: release library
run: |
make GIT_TAG=${SEMVER} REVISION=$GITHUB_SHA tag
- name: release binary
run: |
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@

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

[![Coverage](https://sonarcloud.io/api/project_badges/measure?project=dnitsch_configmanager&metric=coverage)](https://sonarcloud.io/summary/new_code?id=dnitsch_configmanager)

Package used for retrieving application settings from various sources.

Currently supported variable and secrets implementations:
Expand Down

0 comments on commit 5ba544d

Please sign in to comment.