Skip to content

Commit

Permalink
Validating old way
Browse files Browse the repository at this point in the history
  • Loading branch information
Mayra Peña authored and Mayra Peña committed Nov 11, 2024
1 parent d8c430a commit 020f968
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/push-to-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
name: Deployment Script
runs-on: ubuntu-latest
outputs:
manifest_found: ${{ steps.prod_manifest.outputs.manifest_found }}
# manifest_found: ${{ steps.prod_manifest.outputs.manifest_found }}

# Set environment variables in
# https://github.com//<your org>/<your repo>/settings/variables/actions
Expand Down
10 changes: 5 additions & 5 deletions automate/dbt/get_artifacts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,19 @@ then
echo "Manifest not found in Snowflake stage, contact the Snowflake administrator to load a updated manifest to snowflake."
# This is used by github actions
# echo "::set-output name=manifest_found::false"
echo "manifest_found=false" >> $GITHUB_OUTPUT
# echo "manifest_found=false" >> $GITHUB_OUTPUT
# Debugging statement
echo "Wrote manifest_found=false to GITHUB_OUTPUT"
# echo "Wrote manifest_found=false to GITHUB_OUTPUT"

# This is used by Jenkins
# echo "false" > temp_MANIFEST_FOUND.txt
else
echo "Updated manifest from production"

# This is used by github actions
# echo "::set-output name=manifest_found::true"
echo "manifest_found=true" >> $GITHUB_OUTPUT
echo "Wrote manifest_found=true to GITHUB_OUTPUT"
echo "::set-output name=manifest_found::true"
# echo "manifest_found=true" >> $GITHUB_OUTPUT
# echo "Wrote manifest_found=true to GITHUB_OUTPUT"

# This is used by Jenkins
# echo "true" > temp_MANIFEST_FOUND.txt
Expand Down

0 comments on commit 020f968

Please sign in to comment.