Skip to content

Commit

Permalink
Try cloning repo
Browse files Browse the repository at this point in the history
update

update
  • Loading branch information
amishas157 committed Oct 30, 2024
1 parent ee6b61a commit 79121d1
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/update_source_data_schema_changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,19 @@ jobs:

- name: Run Bash Script
run: |
set -x
cd $GITHUB_WORKSPACE
cp -r schemas/ new_schemas/
git checkout master
cp -r schemas/ old_schemas
git clone --branch master https://github.com/stellar/stellar-etl-airflow.git repo_master_copy
cp -r repo_master_copy/schemas/ old_schemas/
output=$(python3 scripts/get_source_data_schema_changelog.py)
echo "$output" > changelog/source_data.md
- name: Commit changes
id: commit_changes
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git add changelog/source_data.md
if git commit -m "Update changelog for Source data"; then
echo "Changes committed."
Expand Down

0 comments on commit 79121d1

Please sign in to comment.