Skip to content

Commit

Permalink
ci: even more clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmillennick committed Jan 21, 2025
1 parent b1d2c7a commit fc7228c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-push-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,20 +29,20 @@ jobs:
submodules: true
ref: ${{ github.event.pull_request.head.ref || github.ref }}

- name: Login to Docker Hub
- name: Login to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.INFRA_GH_TOKEN }}

- name: Login to Docker Hub to Avoid Rate Limiting
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_TOKEN }}

- name: Build and Push Docker image movement
- name: Build and push container tags
run: |
./scripts/docker/build-push-container -n ${{ inputs.container_name }}
Expand All @@ -57,19 +57,19 @@ jobs:
submodules: true
ref: ${{ github.event.pull_request.head.ref || github.ref }}

- name: Login to Docker Hub
- name: Login to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.INFRA_GH_TOKEN }}

- name: Login to Docker Hub to Avoid Rate Limiting
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_TOKEN }}

- name: Build and Push Docker image movement
- name: Build and push container manifest
run: |
./scripts/movement/manifest ${{ inputs.container_name }}

0 comments on commit fc7228c

Please sign in to comment.