github.com/goreleaser/goreleaser@v1.25.1/internal/pipe/scoop/testdata/Test_buildManifest/pre-post-install.json.golden (about) 1 { 2 "version": "1.0.1", 3 "architecture": { 4 "32bit": { 5 "url": "https://github.com/test/test/releases/download/v1.0.1/foo_1.0.1_windows_386.tar.gz", 6 "bin": [ 7 "foo.exe", 8 "bar.exe" 9 ], 10 "hash": "5e2bf57d3f40c4b6df69daf1936cb766f832374b4fc0259a7cbff06e2f70f269" 11 }, 12 "64bit": { 13 "url": "https://github.com/test/test/releases/download/v1.0.1/foo_1.0.1_windows_amd64.tar.gz", 14 "bin": [ 15 "foo.exe", 16 "bar.exe" 17 ], 18 "hash": "5e2bf57d3f40c4b6df69daf1936cb766f832374b4fc0259a7cbff06e2f70f269" 19 }, 20 "arm64": { 21 "url": "https://github.com/test/test/releases/download/v1.0.1/foo_1.0.1_windows_arm64.tar.gz", 22 "bin": [ 23 "foo.exe", 24 "bar.exe" 25 ], 26 "hash": "5e2bf57d3f40c4b6df69daf1936cb766f832374b4fc0259a7cbff06e2f70f269" 27 } 28 }, 29 "homepage": "https://github.com/goreleaser", 30 "description": "A run pipe test formula", 31 "persist": [ 32 "data", 33 "config", 34 "test.ini" 35 ], 36 "pre_install": [ 37 "Write-Host 'Running preinstall command'" 38 ], 39 "post_install": [ 40 "Write-Host 'Running postinstall command'" 41 ] 42 }