--skip-errors for package_cloud push goreleaser is duplicating but this is okay
This commit is contained in:
parent
a6673b4d42
commit
c669518fdc
|
|
@ -17,10 +17,6 @@ builds:
|
|||
- amd64
|
||||
- "386"
|
||||
ignore:
|
||||
- goos: darwin
|
||||
goarch: "386"
|
||||
- goarm: mips64
|
||||
- gomips: hardfloat
|
||||
- goamd64: v4
|
||||
- goos: freebsd
|
||||
goarch: "386"
|
||||
|
|
|
|||
|
|
@ -56,13 +56,13 @@ fi
|
|||
for ubuntu_version in ${SUPPORTED_UBUNTU_VERSIONS}
|
||||
do
|
||||
if [[ $ARTIFACT_PATH == *.deb ]]; then
|
||||
package_cloud push ${PACKAGE_CLOUD_REPO}/ubuntu/${ubuntu_version} $ARTIFACT_PATH
|
||||
package_cloud push ${PACKAGE_CLOUD_REPO}/ubuntu/${ubuntu_version} $ARTIFACT_PATH --skip-errors
|
||||
fi
|
||||
done
|
||||
|
||||
for redhat_version in ${SUPPORTED_REDHAT_VERSIONS}
|
||||
do
|
||||
if [[ $ARTIFACT_PATH == *.rpm ]]; then
|
||||
package_cloud push ${PACKAGE_CLOUD_REPO}/el/${redhat_version} $ARTIFACT_PATH
|
||||
package_cloud push ${PACKAGE_CLOUD_REPO}/el/${redhat_version} $ARTIFACT_PATH --skip-errors
|
||||
fi
|
||||
done
|
||||
|
|
|
|||
Loading…
Reference in New Issue