Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove spark exception #141

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 0 additions & 22 deletions .github/workflows/release-prep.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,17 +163,6 @@ jobs:
fi
echo "::notice title=${{ env.NOTIFICATION_PREFIX }}: $title::$message"

- name: "Spark safety check"
if: ${{ contains(github.repository, 'dbt-labs/dbt-spark') }}
run: |
if [[ ${{ steps.set_existence.outputs.exists }} != true ]]
then
title="Spark version-bump.yml check"
message="dbt-spark needs version-bump.yml run before running the release. The changelog is not up to date."
echo "::error title=${{ env.NOTIFICATION_PREFIX }}: $title::$message"
exit 1
fi

- name: "[DEBUG] Print Outputs"
run: |
echo changelog_path: ${{ steps.set_path.outputs.changelog_path }}
Expand Down Expand Up @@ -215,17 +204,6 @@ jobs:
fi
echo "::notice title=${{ env.NOTIFICATION_PREFIX }}: $title::$message"

- name: "Spark safety check"
if: ${{ contains(github.repository, 'dbt-labs/dbt-spark') }}
run: |
if [[ ${{ steps.version-check.outputs.up_to_date }} != true ]]
then
title="Spark version-bump.yml check"
message="dbt-spark needs version-bump.yml run before running the release. The version bump is not up to date."
echo "::error title=${{ env.NOTIFICATION_PREFIX }}: $title::$message"
exit 1
fi

- name: "[DEBUG] Print Outputs"
run: |
echo up_to_date: ${{ steps.version-check.outputs.up_to_date }}
Expand Down