Compare commits

...

1 Commits

Author SHA1 Message Date
Zack Brady
6c6c652155 testing registry creds
Signed-off-by: Zack Brady <zackbrady123@gmail.com>
2025-08-08 14:55:55 -04:00

View File

@@ -31,6 +31,20 @@ jobs:
go-version-file: go.mod
check-latest: true
- name: Authenticate to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Authenticate to DockerHub Container Registry
uses: docker/login-action@v3
with:
registry: docker.io
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Install Go Releaser
uses: goreleaser/goreleaser-action@v6
with:
@@ -80,6 +94,20 @@ jobs:
sudo apt-get install -y unzip
sudo apt-get install -y tree
- name: Authenticate to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Authenticate to DockerHub Container Registry
uses: docker/login-action@v3
with:
registry: docker.io
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Download Artifacts
uses: actions/download-artifact@v4
with: