如何在GitHub动作中使用环境VAR?

发布于 2025-02-07 22:20:29 字数 672 浏览 0 评论 0原文

env:
  APP_PATH: ${{ github.workspace }}/MyApp/Build/Applications/MyApp.app

jobs:
  build:
    runs-on: macos-latest

    steps:
      - name: Upload app
        uses: svenstaro/upload-release-action@v2
        with:
          file: ${APP_PATH}

这将失败:

Error: ENOENT: no such file or directory, stat '${APP_PATH}'

docs> docs 说要使用,例如$ day_of_week,但行不通。我已经尝试过$ app_path$ {app_path}$ {{app_path}}}

env:
  APP_PATH: ${{ github.workspace }}/MyApp/Build/Applications/MyApp.app

jobs:
  build:
    runs-on: macos-latest

    steps:
      - name: Upload app
        uses: svenstaro/upload-release-action@v2
        with:
          file: ${APP_PATH}

This fails with:

Error: ENOENT: no such file or directory, stat '${APP_PATH}'

The docs say to use, e.g. $DAY_OF_WEEK, but it doesn't work. I've tried $APP_PATH, ${APP_PATH}, and ${{APP_PATH}}.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文