Skip to content

Commit 9062c5e

Browse files
fix files permissions
1 parent 717346f commit 9062c5e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ jobs:
8080
- name: Set Debian Dappnode attended ISO name
8181
run: |
8282
file=$(ls images/Dappnode-debian-*.iso)
83+
chmod 777 "$file"
8384
attended_filename="${file/images\/Dappnode-/Dappnode-${CORE_VERSION}-}"
8485
mv "$file" "$attended_filename"
8586
@@ -96,6 +97,7 @@ jobs:
9697
- name: Set Dappnode unattended ISO name
9798
run: |
9899
file=$(ls images/Dappnode-debian-*.iso)
100+
chmod 777 "$file"
99101
core_filename="${file/images\/Dappnode-/Dappnode-${CORE_VERSION}-}"
100102
unattended_filename="${core_filename/%.iso/-unattended.iso}"
101103
mv "$file" "$unattended_filename"
@@ -113,6 +115,7 @@ jobs:
113115
- name: Set Ubuntu Dappnode attended ISO name
114116
run: |
115117
file=$(ls images/Dappnode-ubuntu-*.iso)
118+
chmod 777 "$file"
116119
attended_filename="${file/images\/Dappnode-/Dappnode-${CORE_VERSION}-}"
117120
mv "$file" "$attended_filename"
118121
@@ -129,6 +132,7 @@ jobs:
129132
- name: Set Ubuntu Dappnode unattended ISO name
130133
run: |
131134
file=$(ls images/Dappnode-ubuntu-*.iso)
135+
chmod 777 "$file"
132136
core_filename="${file/images\/Dappnode-/Dappnode-${CORE_VERSION}-}"
133137
unattended_filename="${core_filename/%.iso/-unattended.iso}"
134138
mv "$file" "$unattended_filename"

0 commit comments

Comments
 (0)