Skip to content

Commit

Permalink
More subtle bash syntax
Browse files Browse the repository at this point in the history
As it would turn out, bash scripting is finicky when dealing with arrays. My array is not being sent to the GitHub output properly for some reason. Trying it out by replacing * with @. If that doesn't work, I'm going to try removing the entire [@] section and see what happens.
  • Loading branch information
nataliejschultz committed Apr 18, 2024
1 parent ef61476 commit 4e8300b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/AWS-auth.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
done
echo "final changedfiles array: ${changedfiles[*]}"
echo "CONFIG_FILES=${changedfiles[*]}" >> "$GITHUB_OUTPUT"
echo "CONFIG_FILES=${changedfiles[@]}" >> "$GITHUB_OUTPUT"
AssumeRoleAndCallIdentity:
name: AWS Authentication + Sending Welcome Email
Expand Down
1 change: 1 addition & 0 deletions configs/wyoming-original.nrel-op.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,3 +65,4 @@
"data_trajectories_columns_exclude": ["user_id"]
}
}

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

0 comments on commit 4e8300b

Please sign in to comment.