Skip to content

Commit 60ca262

Browse files
committed
working with github output 2
1 parent 77f778a commit 60ca262

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/actions/cache-deps/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@ runs:
2424
id: 'install'
2525
run: |
2626
dotnet restore ./eCommerceSolution.slnx
27-
echo "cache=${{ !(inputs.cache-disable) }}" >> $GITHUB_OUTPUT
27+
echo "cache=${{ inputs.cache-disable }}" >> $GITHUB_OUTPUT
2828
shell: bash

.github/workflows/deployment.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ jobs:
107107
- name: Test
108108
run: dotnet test ./eCommerceSolution.slnx -c Release --no-build --verbosity normal
109109
- name: Job report
110-
run: echo "cache used? ${{ steps.deps.outputs.cache-used }}"
110+
run: echo "cache disabled? ${{ steps.deps.outputs.cache-used }}"
111111

112112
build-publish:
113113
strategy:
@@ -163,7 +163,7 @@ jobs:
163163
name: publish-artifacts
164164
path: ./publish
165165
- name: Job report
166-
run: echo "cache used? ${{ steps.deps.outputs.cache-used }}"
166+
run: echo "cache disabled? ${{ steps.deps.outputs.cache-used }}"
167167

168168

169169
deploy:

0 commit comments

Comments
 (0)