mirror of
https://github.com/ddworken/hishtory.git
synced 2024-11-22 08:14:02 +01:00
Fix downloading the xattr file
This commit is contained in:
parent
6648ecb48d
commit
93e59f37ec
9
Makefile
9
Makefile
@ -13,31 +13,34 @@ release:
|
||||
expr `cat VERSION` + 1 > VERSION
|
||||
git add VERSION
|
||||
git commit -m "Release: start releasing v0.`cat VERSION`" --no-verify
|
||||
git push && git push --tags
|
||||
# Release linux-amd64
|
||||
cp .slsa-goreleaser-linux-amd64.yml .slsa-goreleaser.yml
|
||||
git add .slsa-goreleaser.yml
|
||||
git commit -m "Release linux-amd64 v0.`cat VERSION`" --no-verify
|
||||
git tag v0.`cat VERSION`-linux-amd64
|
||||
git push && git push --tags
|
||||
# Release darwin-amd64
|
||||
cp .slsa-goreleaser-darwin-amd64.yml .slsa-goreleaser.yml
|
||||
git add .slsa-goreleaser.yml
|
||||
git commit -m "Release darwin-amd64 v0.`cat VERSION`" --no-verify
|
||||
git tag v0.`cat VERSION`-darwin-amd64
|
||||
git push && git push --tags
|
||||
# Release darwin-arm64
|
||||
cp .slsa-goreleaser-darwin-arm64.yml .slsa-goreleaser.yml
|
||||
git add .slsa-goreleaser.yml
|
||||
git commit -m "Release darwin-arm64 v0.`cat VERSION`" --no-verify
|
||||
git tag v0.`cat VERSION`-darwin-arm64
|
||||
git push && git push --tags
|
||||
# Clean up by removing .slsa-goreleaser.yml
|
||||
rm .slsa-goreleaser.yml
|
||||
git add .slsa-goreleaser.yml
|
||||
git commit -m "Release: finish releasing v0.`cat VERSION`" --no-verify
|
||||
git tag v0.`cat VERSION`-xattr
|
||||
git push && git push --tags
|
||||
# Tag the release
|
||||
gh release create v0.`cat VERSION` --generate-notes
|
||||
# Push to trigger the releases
|
||||
git push
|
||||
git push --tags
|
||||
git push && git push --tags
|
||||
|
||||
build-static:
|
||||
docker build -t gcr.io/dworken-k8s/hishtory-static -f backend/web/caddy/Dockerfile .
|
||||
|
@ -770,9 +770,17 @@ func setCodesigningXattrs(downloadInfo shared.UpdateInfo, filename string) error
|
||||
} else {
|
||||
return fmt.Errorf("setCodesigningXattrs only supports arm64 and amd64: %#v", runtime.GOARCH)
|
||||
}
|
||||
xattrDump, err := ApiGet(url)
|
||||
resp, err := http.Get(url)
|
||||
if err != nil {
|
||||
return fmt.Errorf("failed to get xattr dump: %v", err)
|
||||
return fmt.Errorf("failed to GET %s: %v", url, err)
|
||||
}
|
||||
defer resp.Body.Close()
|
||||
if resp.StatusCode != 200 {
|
||||
return fmt.Errorf("failed to GET %s: status_code=%d", url, resp.StatusCode)
|
||||
}
|
||||
xattrDump, err := ioutil.ReadAll(resp.Body)
|
||||
if err != nil {
|
||||
return fmt.Errorf("failed to read response body from GET %s: %v", url, err)
|
||||
}
|
||||
setXattr(filename, string(xattrDump))
|
||||
return nil
|
||||
|
Loading…
Reference in New Issue
Block a user