feat: update Gitea release workflow to use variable interpolation for FTP credentials
This commit is contained in:
		
							
								
								
									
										6
									
								
								.github/workflows/gitea-release.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										6
									
								
								.github/workflows/gitea-release.yml
									
									
									
									
										vendored
									
									
								
							| @@ -217,10 +217,10 @@ jobs: | ||||
|         VERSION: ${{ steps.get_version.outputs.VERSION }} | ||||
|       run: | | ||||
|         cd .pio/build/esp32dev | ||||
|         lftp -c "set ssl:verify-certificate no; \ | ||||
|         lftp -c 'set ssl:verify-certificate no; \ | ||||
|                  set ftp:ssl-protect-data true; \ | ||||
|                  set ftp:ssl-force true; \ | ||||
|                  set ssl:check-hostname false; \ | ||||
|                  set ftp:ssl-auth TLS; \ | ||||
|                  open -u ${FTP_USER},${FTP_PASSWORD} ftp://filaman.app:21; \ | ||||
|                  put -O / filaman_full_${VERSION}.bin -o filaman_full.bin" | ||||
|                  open -u '"$FTP_USER"','"$FTP_PASSWORD"' ftp://filaman.app:21; \ | ||||
|                  put -O / filaman_full_'"$VERSION"'.bin -o filaman_full.bin' | ||||
		Reference in New Issue
	
	Block a user