diff options
| author | Dan Engelbrecht <[email protected]> | 2023-04-21 16:04:11 +0200 |
|---|---|---|
| committer | Dan Engelbrecht <[email protected]> | 2023-04-21 16:04:11 +0200 |
| commit | 4ac05089399ebcbcf6b28c1855c849bcae40d684 (patch) | |
| tree | dceda21091e50ed365cb993ce938edf8e7c322c3 /.github/workflows | |
| parent | 0.2.5-pre2 (diff) | |
| download | zen-4ac05089399ebcbcf6b28c1855c849bcae40d684.tar.xz zen-4ac05089399ebcbcf6b28c1855c849bcae40d684.zip | |
steps.read_version.outputs.contents -> steps.read_version.outputs.content
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/create_release.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/create_release.yml b/.github/workflows/create_release.yml index 5a92d7a82..9e1cb32e4 100644 --- a/.github/workflows/create_release.yml +++ b/.github/workflows/create_release.yml @@ -210,7 +210,7 @@ jobs: - name: Create Release in Sentry run: | - scripts/sentry-cli --auth-token ${{ secrets.SENTRY_API_KEY }} releases new --org to --project zen-server ${{steps.read_version.outputs.contents}} + scripts/sentry-cli --auth-token ${{ secrets.SENTRY_API_KEY }} releases new --org to --project zen-server ${{steps.read_version.outputs.content}} - name: Download Linux artifacts uses: actions/download-artifact@v1 @@ -244,7 +244,7 @@ jobs: id: get-prerelease uses: haya14busa/action-cond@v1 with: - cond: ${{contains(steps.read_version.outputs.contents, '-pre')}} + cond: ${{contains(steps.read_version.outputs.content, '-pre')}} if_true: "true" if_false: "false" @@ -254,9 +254,9 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - tag_name: v${{steps.read_version.outputs.contents}} + tag_name: v${{steps.read_version.outputs.content}} body: | - ${{steps.read_changelog.outputs.contents}} + ${{steps.read_changelog.outputs.content}} draft: false prerelease: ${{steps.get-prerelease.outputs.value}} files: | @@ -266,4 +266,4 @@ jobs: - name: Finalize Release in Sentry run: | - scripts/sentry-cli --auth-token ${{ secrets.SENTRY_API_KEY }} releases finalize --org to --project zen-server ${{steps.read_version.outputs.contents}} + scripts/sentry-cli --auth-token ${{ secrets.SENTRY_API_KEY }} releases finalize --org to --project zen-server ${{steps.read_version.outputs.content}} |