Skip to content

Issue with setting environment variables in the GitHub Actions script #144592

Closed Answered by 21hs
xengine-qyt asked this question in Actions
Discussion options

You must be logged in to vote

Parece que o problema ocorre devido ao formato incorreto da variável de ambiente que você está tentando definir no GitHub Actions. O erro específico "Invalid format" sugere que o conteúdo da variável release_notes está em um formato que não é aceito ao tentar gravar no arquivo de ambiente com o comando echo "$release_notes" >> $GITHUB_ENV.

O GitHub Actions exige que as variáveis de ambiente definidas por meio do arquivo $GITHUB_ENV sigam o formato de chave-valor, onde a chave e o valor são separados por um sinal de igual (=). Além disso, se o valor da variável contiver caracteres especiais ou espaços, isso pode causar problemas ao tentar gravar a variável.

Possível Solução:
Verifique se o…

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@xengine-qyt
Comment options

Answer selected by xengine-qyt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Actions Build, test, and automate your deployment pipeline with world-class CI/CD Question
2 participants