Skip to content

Commit

Permalink
DEBUG: changed files
Browse files Browse the repository at this point in the history
  • Loading branch information
alexkilgour committed Sep 21, 2023
1 parent 45bf951 commit 134517b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,16 @@ jobs:

- name: List all changed files
run: |
for file in ${{ steps.changed_files.outputs.all_changed_files }}; do
echo "$file was changed"
csv=""
for result in ${{ steps.changed_files.outputs.all_changed_files }}; do
file="$result"
csv="${csv}${csv:+,}$file"
done
echo "CHANGED_FILES=$csv" >> $GITHUB_ENV
- name: push to env
run: |
echo "CHANGED_FILES=${{ steps.changed_files.outputs.all_changed_files }}" >> $GITHUB_ENV
# - name: push to env
# run: |
# echo "CHANGED_FILES=${{ steps.changed_files.outputs.all_changed_files }}" >> $GITHUB_ENV

# - name: Get changeset
# run: |
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Contributing to frontend-toolkits
edit8
edit9
When contributing to an existing package, or building a new one, work should:

- Always be done in a branch
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[!WARNING] This is a warning about newer version of Elements 8
[!WARNING] This is a warning about newer version of Elements 9

# Frontend Toolkits

Expand Down

0 comments on commit 134517b

Please sign in to comment.