Skip to content

Commit

Permalink
Array formatting
Browse files Browse the repository at this point in the history
Modifying array formatting so it's hopefully what I want! Also seeing if I can read the actual output, though it might produce a context error.
  • Loading branch information
nataliejschultz committed Apr 16, 2024
1 parent e3441b8 commit 91e0217
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/AWS-auth.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,19 @@ jobs:
changedfiles=()
for file in ${{ steps.get-changed-files.outputs.all_changed_files }}; do
if [[ "$file" == *nrel-op.json ]]; then
changedfiles+=${file}
changedfiles+=("${file}")
echo "The name of the config file is: ${file}."
echo "CONFIG_FILES=${changedfiles}" >> "$GITHUB_OUTPUT"
echo "changedfiles array: ${changedfiles}"
echo "github output ${GITHUB_OUTPUT}"
fi
done
- name: Echoing github output
run: |
echo "output from above job: ${{ needs.changed_files.outputs.config-file-name }}"
#commenting out to minimize job failure emails

# AssumeRoleAndCallIdentity:
# name: AWS Authentication + Sending Welcome Email
# needs: changed_files
Expand Down
1 change: 0 additions & 1 deletion configs/wyoming-original.nrel-op.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,3 @@
"data_trajectories_columns_exclude": ["user_id"]
}
}

1 change: 0 additions & 1 deletion configs/wyoming.nrel-op.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,4 +81,3 @@
]
}
}

0 comments on commit 91e0217

Please sign in to comment.