本文概述了在 GitHub Actions 工作流程中获取内部版本号的方法。通常使用 ${{github.run_number}} 上下文变量,其他选项包括 env 函数和 Actions Toolkit。实用
如何在 GitHub Actions 中获取内部版本号
如何检索内部版本号在 GitHub Actions 工作流程中?
要在 GitHub Actions 工作流程中检索内部版本号,您可以使用 ${{github.run_number}}
上下文变量。该变量会为每个工作流程运行自动设置,并表示该特定运行的唯一标识符。它是一个序列号,第一次运行时从 1 开始,并随着每次运行而递增。
有哪些方法可以在 GitHub Actions 中获取构建号?
有几种方法可以在 GitHub Actions 中获取内部版本号:
${{github.run_number}}
上下文变量: 这是最简单的方法,可以在任何地方使用工作流程文件。env
函数: 您可以使用 env
函数将内部版本号作为环境变量进行访问。例如,${{env.GITHUB_RUN_NUMBER}}
.getBuildNumber()
函数: 如果您使用的是 Actions Toolkit,则可以使用 getBuildNumber()
函数检索构建如何在特定用例的 GitHub Actions 中访问内部版本号?
有多种方法可以在 GitHub Actions 中访问内部版本号根据您的具体用例:
echo
函数在工作流日志中显示内部版本号。例如,echo "Build number: ${{github.run_number}}"
.steps: - run: echo "Build number: ${{github.run_number}}" outputs: build_number: ${{steps.run.outputs.message}}
.${{github.run_number}}
变量来访问脚本中的内部版本号。with
关键字将内部版本号作为参数传递给其他操作。例如,uses: actions/upload-artifact@v2 with: name: my-artifact path: my-path run-number: ${{github.run_number}}
.以上是如何在 github actions 中获取内部版本号的详细内容。更多信息请关注PHP中文网其他相关文章!