diff options
| author | 2022-06-01 13:03:21 -0700 | |
|---|---|---|
| committer | 2022-06-01 13:03:21 -0700 | |
| commit | 4223c7dc4d678f38421b2464cf8d7f0ebcc1abad (patch) | |
| tree | c75b43e5a6a997109de8e5e68c7612b48fbe4786 | |
| parent | Merge #142 - use version as release tag in Sentry action (diff) | |
CI: fix version step output
Diffstat (limited to '')
| -rw-r--r-- | .github/workflows/build.yaml | 2 | ||||
| -rw-r--r-- | .github/workflows/sentry_release.yaml | 2 | 
2 files changed, 2 insertions, 2 deletions
| diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index c8d7a68..1be5d2f 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -30,7 +30,7 @@ jobs:          run: |            set -eu            version=$(python scripts/version.py) -          echo "::set-output name=version::version" +          echo "::set-output name=version::$version"            printf "%s\n" "${version}"        # The current version (v2) of Docker's build-push action uses buildx, diff --git a/.github/workflows/sentry_release.yaml b/.github/workflows/sentry_release.yaml index 8c6298d..4135b4f 100644 --- a/.github/workflows/sentry_release.yaml +++ b/.github/workflows/sentry_release.yaml @@ -20,7 +20,7 @@ jobs:          run: |            set -eu            version=$(python scripts/version.py) -          echo "::set-output name=version::version" +          echo "::set-output name=version::$version"            printf "%s\n" "${version}"        - name: Create a Sentry.io release | 
