-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix up AUR to only upload if REPOSITORY_OWNER=ddev
- Loading branch information
Showing
1 changed file
with
6 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -314,10 +314,10 @@ aurs: | |
homepage: "https://github.com/ddev/ddev" | ||
description: "DDEV: a local web development environment" | ||
maintainers: | ||
- 'Randy Fay <randy at randyfay.com>' | ||
- 'Randy Fay <randy.fay@ddev.com>' | ||
license: "Apache 2" | ||
# main ddev repo will only be uploaded on non-prerelease | ||
skip_upload: auto | ||
# main ddev repo will only be uploaded on non-prerelease and ddev/ddev repo | ||
skip_upload: '{{ if and (eq .Env.REPOSITORY_OWNER "ddev") (not .Prerelease) }}false{{ else }}true{{ end }}' | ||
private_key: '{{ .Env.AUR_SSH_PRIVATE_KEY }}' | ||
# AUR_EDGE_GIT_URL should be something like ssh://[email protected]/ddev-bin.git or ssh://[email protected]/rfay-test-ddev-bin.git | ||
git_url: '{{ .Env.AUR_STABLE_GIT_URL }}' | ||
|
@@ -352,10 +352,10 @@ aurs: | |
homepage: "https://github.com/ddev/ddev" | ||
description: "DDEV: a local web development environment (edge)" | ||
maintainers: | ||
- 'Randy Fay <randy at randyfay.com>' | ||
- 'Randy Fay <randy.fay@ddev.com>' | ||
license: "Apache 2" | ||
# Always upload, even on prerelease | ||
skip_upload: "false" | ||
# Always upload on ddev/ddev | ||
skip_upload: '{{ if eq .Env.REPOSITORY_OWNER "ddev" }}false{{ else }}true{{ end }}' | ||
private_key: '{{ .Env.AUR_SSH_PRIVATE_KEY }}' | ||
# AUR_EDGE_GIT_URL should be something like ssh://[email protected]/ddev-edge-bin.git or ssh://[email protected]/rfay-test-ddev-edge-bin.git | ||
git_url: '{{ .Env.AUR_EDGE_GIT_URL }}' | ||
|