Skip to content

Commit 1d2732d

Browse files
committed
dev: add dev loading to justfile
1 parent f421b1c commit 1d2732d

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.goreleaser.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ aurs:
147147
- "{{ .Env.PACKAGE_MAINTAINER }}"
148148
license: LGPL-3.0
149149
private_key: "{{ .Env.AUR_KEY }}"
150-
git_url: "{{ .Env.AUR_GIT_URL }}"
150+
git_url: "ssh://aur@aur.archlinux.org/{{ .ProjectName }}-bin.git"
151151
provides:
152152
- yggd
153153
- yggctl

Justfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
set shell := ["bash", "-euo", "pipefail", "-c"]
2+
set dotenv-load := true
23

34
test:
45
go test ./ygglib/... ./yggd/... ./examples/... ./web/... --race -count=1
@@ -18,7 +19,7 @@ tidy:
1819

1920
release-check-env:
2021
@missing=0; \
21-
for name in GITHUB_TOKEN GPG_FINGERPRINT PACKAGE_MAINTAINER AUR_KEY AUR_GIT_URL; do \
22+
for name in GITHUB_TOKEN GPG_FINGERPRINT PACKAGE_MAINTAINER AUR_KEY; do \
2223
if [ -z "${!name:-}" ]; then \
2324
echo "missing required environment variable: ${name}" >&2; \
2425
missing=1; \

0 commit comments

Comments
 (0)