本文提供了在 GitHub 操作中管理環境變數的全面指南。它討論了兩種方法:使用“export”關鍵字導出變數和使用“outputs”關鍵字定義輸出。 gu
要從 GitHub 操作匯出環境變量,您可以使用export
關鍵字。匯出變數的語法如下:
<code class="yaml">export variable_name=variable_value</code>
例如,以下操作匯出值為MY_VARIABLE
的my-value
環境變數:
<code class="yaml">steps: - export MY_VARIABLE=my-value</code>
要讓變數在 GitHub 操作外部可用,您可以使用 outputs
關鍵字。定義輸出的語法如下:
<code class="yaml">outputs: variable_name: value: variable_value</code>
例如,以下操作使用值MY_VARIABLE
定義my-value
輸出:
<code class="yaml">outputs: MY_VARIABLE: value: my-value</code>
在 GitHub actions 中導出變數的語法如下:
<code class="yaml">export variable_name=variable_value</code>
以上是如何在github操作中導出變數的詳細內容。更多資訊請關注PHP中文網其他相關文章!