We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent adbbbff commit bd8a7a7Copy full SHA for bd8a7a7
2 files changed
.github/workflows/build-publish.yml
@@ -13,8 +13,6 @@ jobs:
13
steps:
14
- run: sudo apt install moreutils -y
15
- uses: actions/checkout@v3
16
- with:
17
- fetch-depth: 0
18
- name: Download latest.json
19
run: mc cp scrolls/druid-scrolls-staging/latest.json old-latest.json || true
20
- name: Building new files
build-changed-scrolls.sh
@@ -19,7 +19,7 @@ echo $changedScrolls
for d in scrolls/*/*/*/ ; do
b=$(basename $d)
21
for i in $changedScrolls ; do
22
- if [[ "$i" == "$b" ]]; then
+ if [ "$i" = "$b" ]; then
23
tar -czvf scrolls/$b.tar.gz -C $d .
24
fi
25
done
0 commit comments