Skip to content
Merged
Show file tree
Hide file tree
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
25 changes: 19 additions & 6 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:

strategy:
fail-fast: false
max-parallel: 1
matrix:
include:
- image: mate-webui
Expand Down Expand Up @@ -84,12 +85,24 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Log in to GitHub Container Registry (with retry)
env:
GHCR_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
for attempt in 1 2 3; do
if echo "$GHCR_TOKEN" | docker login ${{ env.REGISTRY }} -u "${{ github.actor }}" --password-stdin; then
echo "GHCR login succeeded on attempt ${attempt}."
exit 0
fi

echo "GHCR login attempt ${attempt} failed."
if [ "$attempt" -eq 3 ]; then
echo "::error::Unable to log in to GHCR after 3 attempts."
exit 1
fi

sleep $((attempt * 10))
done

- name: Extract Docker metadata
id: meta
Expand Down
2 changes: 1 addition & 1 deletion docs/wiki
Submodule wiki updated from ccc713 to 960a4a
2 changes: 1 addition & 1 deletion quickstart-azure/QUICKSTART.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,4 +114,4 @@ az group delete --name rg-mate-dev

---

**Next:** After deployment succeeds, read [docs/wiki/User-Getting-Started.md](../../docs/wiki/User-Getting-Started.md) to set up your first test suite.
**Next:** After deployment succeeds, read [docs/wiki/User-Getting-Started.md](https://github.com/holgerimbery/mate/blob/main/docs/wiki/User-Getting-Started.md) to set up your first test suite.
2 changes: 1 addition & 1 deletion quickstart-azure/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ For issues or questions:
1. Check [Troubleshooting](#troubleshooting) above
2. Review logs using Azure CLI commands above
3. Open an issue on [GitHub](https://github.com/holgerimbery/mate/issues)
4. See [docs/wiki/Developer-Getting-Started.md](../../docs/wiki/Developer-Getting-Started.md) for more details
4. See [docs/wiki/Developer-Getting-Started.md](https://github.com/holgerimbery/mate/blob/main/docs/wiki/Developer-Getting-Started.md) for more details

---

Expand Down