Skip to content

Commit

Permalink
push to internal registry directly
Browse files Browse the repository at this point in the history
  • Loading branch information
sindunuragarp committed Nov 14, 2023
1 parent 2540551 commit 2d908ec
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/go.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,17 +92,17 @@ jobs:
needs: [fmt, lint, generate, test]
runs-on: ubuntu-latest
env:
REGISTRY_IMAGE: ghcr.io/miroapp/actions-runner-controller
REGISTRY_IMAGE: ${{ secrets.REGISTRY_URL }}/docker/delivery/actions-runner-controller
BUILD_PLATFORM: linux/amd64
BUILD_VERSION: ${{ github.event_name != 'pull_request' && 'master' || 'branch' }}-${{ github.sha }}
steps:
- uses: docker/setup-buildx-action@v3

- uses: docker/login-action@v3
with:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
registry: ghcr.io
username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_PASSWORD }}
registry: ${{ secrets.REGISTRY_URL }}

- uses: docker/setup-qemu-action@v3
with:
Expand Down

0 comments on commit 2d908ec

Please sign in to comment.