From 8b83f1f5091f443dc1723f1e45ec89686395c214 Mon Sep 17 00:00:00 2001 From: Will Bollock Date: Wed, 8 Mar 2023 11:54:14 -0500 Subject: [PATCH] docs: add ghcr.io login steps too --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index e7b6dfe..3b55079 100644 --- a/README.md +++ b/README.md @@ -255,6 +255,10 @@ Follow goreleaser's [quick start](https://goreleaser.com/quick-start/) instructi export GITHUB_TOKEN="YOUR_GH_TOKEN" git tag -a v -m "Release summary" git push origin v +# login to ghcr too +# https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-container-registry#authenticating-with-a-personal-access-token-classic +echo $CR_PAT | docker login ghcr.io -u $USERNAME --password-stdin + goreleaser release ```