-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated workflow to add more sources
- Loading branch information
1 parent
60584d2
commit 49969b1
Showing
3 changed files
with
15 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -77,7 +77,9 @@ jobs: | |
run: | | ||
mkdir -p outputs | ||
matrix="[]" | ||
IFS=',' read -ra SOURCES <<< "${{ inputs.sources }}" | ||
input_sources="${{ inputs.sources }}" | ||
input_sources_cleaned="${input_sources//[[:space:]]/}" | ||
IFS=',' read -ra SOURCES <<< "$input_sources_cleaned" | ||
for source in "${SOURCES[@]}"; do | ||
ttl_file_name="spektrix-${source}-entities.ttl" | ||
artifact_name="spektrix-${source}" | ||
|
@@ -120,6 +122,7 @@ jobs: | |
|
||
- name: Commit files to GitHub | ||
run: | | ||
git status | ||
git pull | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "GitHub Actions" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters