Skip to content

Commit

Permalink
Update blank.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
dsame authored Nov 4, 2023
1 parent 47e0f2b commit 89ce0b2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/blank.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,22 +23,22 @@ jobs:

- name: h1
env:
h: ${{ hashFiles('**/*.txt /tmp/f') }}
h: ${{ hashFiles('{**/*.txt,/tmp/f}') }}
run: echo "Hash $h"

- name: f2
run: |
echo "111" >> f1.txt
- name: h2
env:
h: ${{ hashFiles('**/*.txt /tmp/f') }}
h: ${{ hashFiles('{**/*.txt,/tmp/f}') }}
run: echo "Hash $h"

- name: f3
run: |
echo "bbb" >> /tmp/f
- name: h3
env:
h: ${{ hashFiles('**/*.txt /tmp/f') }}
h: ${{ hashFiles('**/*.txt,/tmp/f') }}
run: echo "Hash $h"

0 comments on commit 89ce0b2

Please sign in to comment.