Skip to content

Commit e359b15

Browse files
authored
fix: remove -x from set -euxo pipefail in .github/workflows/publish-public.yaml (#70)
1 parent 8ac1b6a commit e359b15

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/publish-public.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
env:
4242
GITHUB_TOKEN: ${{ github.token }}
4343
run: |
44-
set -euxo pipefail
44+
set -euo pipefail
4545
version=$(git describe --tags --abbrev=7 | tr -d "v")
4646
dotnet pack --configuration Release SnD.ApiClient.csproj
4747
@@ -60,7 +60,7 @@ jobs:
6060
env:
6161
GITHUB_TOKEN: ${{ github.token }}
6262
run: |
63-
set -euxo pipefail
63+
set -euo pipefail
6464
version=$(git describe --tags --abbrev=7 | tr -d "v")
6565
dotnet pack --configuration Release SnD.ApiClient.Azure.csproj
6666

0 commit comments

Comments
 (0)