@@ -68,12 +68,12 @@ jobs:
6868
6969 - name : Prepare Build Artifacts (!windows)
7070 working-directory : ./${{ env.DIST_DIR }}
71- run : tar -czf ${{ env.RELEASE_NAME }}.tar.gz arduino-flasher-cli -C ../ LICENSE
71+ run : tar -czf ${{ env.RELEASE_NAME }}.tar.gz arduino-flasher-cli -C ../ LICENSE README.md
7272 if : matrix.os != 'windows'
7373
7474 - name : Prepare Build Artifacts (windows)
7575 working-directory : ./${{ env.DIST_DIR }}
76- run : 7z a -tzip ${{ env.RELEASE_NAME }}.zip arduino-flasher-cli.exe ../LICENSE
76+ run : 7z a -tzip ${{ env.RELEASE_NAME }}.zip arduino-flasher-cli.exe ../LICENSE ../README.md
7777 if : matrix.os == 'windows'
7878
7979 - name : Upload artifacts
@@ -125,7 +125,7 @@ jobs:
125125
126126 - name : Prepare Build Artifacts
127127 run : |
128- ${{ env.SEVENZ_PATH }} a -tzip ${{ env.RELEASE_NAME }}.zip arduino-flasher-cli.exe LICENSE
128+ ${{ env.SEVENZ_PATH }} a -tzip ${{ env.RELEASE_NAME }}.zip arduino-flasher-cli.exe LICENSE README.md
129129
130130 - name : Upload artifacts
131131 uses : actions/upload-artifact@v4
@@ -137,7 +137,7 @@ jobs:
137137
138138 # This step is needed because the self hosted runner does not delete files automatically
139139 - name : Cleanup
140- run : rm ${{ env.RELEASE_NAME }}.zip LICENSE arduino-flasher-cli.exe
140+ run : rm ${{ env.RELEASE_NAME }}.zip LICENSE README.md arduino-flasher-cli.exe
141141
142142 notarize-macos :
143143 name : Notarize macOS
@@ -253,7 +253,7 @@ jobs:
253253 +x \
254254 "${{ env.PROJECT_NAME }}"
255255
256- tar -czf ${{ env.PACKAGE_FILENAME }} ${{ env.PROJECT_NAME }} LICENSE
256+ tar -czf ${{ env.PACKAGE_FILENAME }} ${{ env.PROJECT_NAME }} LICENSE README.md
257257
258258 - name : Replace artifact with notarized build
259259 uses : actions/upload-artifact@v4
0 commit comments