Skip to content

Commit

Permalink
add debugging hooks for AUR
Browse files Browse the repository at this point in the history
  • Loading branch information
rfay committed Nov 14, 2024
1 parent 5c87013 commit 0b69cb2
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,14 @@ snapshot:

aurs:
- name: "ddev"
hooks:
pre:
- cmd: |
echo "Debug for ddev (stable):"
echo "REPOSITORY_OWNER='{{.Env.REPOSITORY_OWNER}}'"
echo "Prerelease='{{.Prerelease}}'"
echo "Skip upload evaluates to: '{{ if and (eq .Env.REPOSITORY_OWNER "ddev") (not .Prerelease) }}false{{ else }}true{{ end }}'"
ids:
- ddev
homepage: "https://github.com/ddev/ddev"
Expand Down Expand Up @@ -347,6 +355,13 @@ aurs:
email: [email protected]

- name: "ddev-edge"
hooks:
pre:
- cmd: |
echo "Debug for ddev-edge:"
echo "REPOSITORY_OWNER='{{.Env.REPOSITORY_OWNER}}'"
echo "Prerelease='{{.Prerelease}}'"
echo "Skip upload evaluates to: '{{ if and (eq .Env.REPOSITORY_OWNER "ddev") (not .Prerelease) }}false{{ else }}true{{ end }}'"
ids:
- ddev
homepage: "https://github.com/ddev/ddev"
Expand Down

0 comments on commit 0b69cb2

Please sign in to comment.