-
-
Notifications
You must be signed in to change notification settings - Fork 128
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into refactor-URLs
- Loading branch information
Showing
7 changed files
with
54 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
DEFVER=1 | ||
ARCHS_SUPPORTED="amd64 arm64 armhf i386" | ||
get_github_releases "goreleaser/goreleaser" "latest" | ||
if [ "${ACTION}" != "prettylist" ]; then | ||
URL=$(grep -m 1 "browser_download_url.*${HOST_ARCH}\.deb\"" "${CACHE_FILE}" | cut -d'"' -f4) | ||
VERSION_PUBLISHED=$(cut -d'/' -f8 <<<"${URL}" | sed 's|v||') | ||
fi | ||
PRETTY_NAME="Goreleaser" | ||
WEBSITE="https://goreleaser.com" | ||
SUMMARY="Deliver Go binaries as fast, easily as possible." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
DEFVER=1 | ||
ARCHS_SUPPORTED="amd64 arm64 armhf i386" | ||
get_github_releases "goreleaser/goreleaser-pro" "latest" | ||
if [ "${ACTION}" != "prettylist" ]; then | ||
URL=$(grep -m 1 "browser_download_url.*${HOST_ARCH}\.deb\"" "${CACHE_FILE}" | cut -d'"' -f4) | ||
VERSION_PUBLISHED=$(cut -d'/' -f8 <<<"${URL}" | sed 's|v||') | ||
fi | ||
PRETTY_NAME="Goreleaser Pro" | ||
WEBSITE="https://goreleaser.com/pro" | ||
SUMMARY="Deliver Go binaries as fast, easily and as pro as possible." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
DEFVER=1 | ||
ARCHS_SUPPORTED="amd64 arm64 armhf" | ||
get_github_releases "julian-alarcon/prospect-mail" "latest" | ||
if [ "${ACTION}" != "prettylist" ]; then | ||
case ${HOST_ARCH} in | ||
armhf) | ||
URL=$(grep "browser_download_url.*${HOST_CPU}\.deb\"" "${CACHE_FILE}" | head -n1 | cut -d'"' -f4) | ||
;; | ||
*) | ||
URL=$(grep "browser_download_url.*${HOST_ARCH}\.deb\"" "${CACHE_FILE}" | head -n1 | cut -d'"' -f4) | ||
;; | ||
esac | ||
VERSION_PUBLISHED="$(echo "${URL}" | cut -d'_' -f2)" | ||
fi | ||
PRETTY_NAME="Prospect Mail" | ||
WEBSITE="https://github.com/julian-alarcon/prospect-mail" | ||
SUMMARY="Unofficial email Outlook client using Electron" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters