This repository has been archived on 2026-07-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2026-07-13 18:50:38 +02:00

6 lines
125 B
Bash

#!/bin/sh
case "$1" in
*sername*) printf '%s\n' "${CI_GIT_USERNAME:-oauth2}" ;;
*) printf '%s\n' "$CI_GIT_TOKEN" ;;
esac