Skip to content

Commit fc1f0f2

Browse files
committed
Change actions folder to actions-report
Rename data folder from 'actions' to 'actions-report' to avoid conflicts with GitHub Actions terminology. Signed-off-by: Igor Pecovnik <igor@armbian.com>
1 parent 6d01dfa commit fc1f0f2

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/generate-actions-report.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -93,13 +93,13 @@ jobs:
9393

9494
- name: Merge reports
9595
run: |
96-
mkdir -p data-branch/data/actions
97-
cp artifacts/actions-report-*/*.json data-branch/data/actions/ 2>/dev/null || true
98-
ls -la data-branch/data/actions/
96+
mkdir -p data-branch/data/actions-report
97+
cp artifacts/actions-report-*/*.json data-branch/data/actions-report/ 2>/dev/null || true
98+
ls -la data-branch/data/actions-report/
9999
100100
- name: Generate index
101101
run: |
102-
cd data-branch/data/actions
102+
cd data-branch/data/actions-report
103103
# Create list of all JSON files
104104
files=$(ls actions-report-*.json 2>/dev/null | sort)
105105
# Generate index.json
@@ -121,7 +121,7 @@ jobs:
121121
cd data-branch
122122
git config user.name "GitHub Actions"
123123
git config user.email "actions@github.com"
124-
git add data/actions/
124+
git add data/actions-report/
125125
if git diff --staged --quiet; then
126126
echo "No changes to commit"
127127
else
@@ -135,4 +135,4 @@ jobs:
135135
with:
136136
token: ${{ secrets.DISPATCH }}
137137
repository: armbian/actions
138-
event-type: "Generate website"
138+
event-type: "Web: Directory listing"

0 commit comments

Comments
 (0)