Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,22 @@ jobs:
env:
OPERATOR_IMAGE_TAG: ${{ github.ref_name }}

# Mirror the operator image to the Gamewarden Harbor registry on every
# tag push.
- name: cd/gamewarden-login
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0
with:
registry: registry.gamewarden.io
username: ${{ secrets.GAMEWARDEN_REGISTRY_USERNAME }}
password: ${{ secrets.GAMEWARDEN_REGISTRY_PASSWORD }}

- name: cd/push-operator-to-gamewarden
run: |
echo "Copying mattermost-operator:${{ github.ref_name }} to registry.gamewarden.io ..."
docker buildx imagetools create \
--tag registry.gamewarden.io/mattermost/mattermost-operator:${{ github.ref_name }} \
mattermost/mattermost-operator:${{ github.ref_name }}
Comment thread
coderabbitai[bot] marked this conversation as resolved.

build-fips:
continue-on-error: true
permissions:
Expand Down
Loading