Deploy Token - Definição do Glossário de CI/CD
Um deploy token é uma credencial criada para um propósito específico, com escopo limitado a uma única capacidade (como enviar para um registry ou ler um feed de pacotes), usada por pipelines em vez de uma conta pessoal, de modo que o acesso seja auditável e revogável.
Where this shows up in a real pipeline
A definition is only useful if you can recognise the thing in your own logs. In practice this concept surfaces when a job behaves differently between a local run and a runner, which is where most CI debugging starts.
- Compare a local run against a CI run of the same command before assuming a tool is at fault.
- Runner environments differ in shell, PATH, TTY availability, available memory, and disk. Most CI-only behaviour traces to one of those five.
- Pin tool versions so an environment difference cannot be introduced by an unrelated update.