-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build the docker image during release and push to ghcr.io Package results: https://github.com/users/xiaoyao9184/packages/container/package/pgroll There are two modifications for `.goreleaser.yaml`: - Add `DOCKER_USERNAME` environment variable for push customize docker registry. - Add `GITHUB_USERNAME` environment variable for fix unable to update Homebrew Tap. see https://github.com/xiaoyao9184/pgroll/actions/runs/6994513095/job/19028379596#step:8:81
- Loading branch information
1 parent
845eee7
commit 5812acc
Showing
3 changed files
with
54 additions
and
1 deletion.
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
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,3 @@ | ||
FROM scratch | ||
COPY pgroll /usr/bin/pgroll | ||
ENTRYPOINT [ "/usr/bin/pgroll" ] |