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 879abad commit 49d0ec3
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/blank.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,28 @@ jobs:
echo "111" > f1.txt
echo "222" > f2.txt
echo "bbb" > /tmp/f
echo "ccc" > f.doc
- name: h10
env:
h: ${{ hashFiles('**/*.txt') }}
run: echo "Hash $h"
- name: h11
env:
h: ${{ hashFiles('//tmp/f') }}
h: ${{ hashFiles('/tmp/f') }}
run: |
cat /tmp/f
echo "Hash $h"
- name: h1doc
env:
h: ${{ hashFiles('f.doc') }}
run: echo "Hash $h"
- name: h1doc2
env:
h: ${{ hashFiles('**/*.txt','f.doc') }}
run: echo "Hash $h"
- name: h1doc3
env:
h: ${{ hashFiles('{**/*.txt,f.doc}') }}
run: echo "Hash $h"

- name: h1
Expand Down

0 comments on commit 49d0ec3

Please sign in to comment.