Skip to content

Commit 5168876

Browse files
authored
Merge pull request #185 from PrestaShop/develop
2 parents fdbb5d7 + 7f8167e commit 5168876

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/gh-pages.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
- name: Get Composer Cache Directory
3434
id: composer-cache
35-
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
35+
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
3636

3737
- name: Cache Composer Directory 📦
3838
uses: actions/cache@v4
@@ -63,7 +63,7 @@ jobs:
6363
- name: Execute `traces:fetch:repositories` 🔧
6464
if: ${{ github.event_name == 'release' || github.event_name == 'schedule' }}
6565
working-directory: ./traces
66-
run: php bin/console traces:fetch:repositories --ghtoken=${ENV_USER_PASS}
66+
run: php bin/console traces:fetch:repositories --ghtoken=${ENV_USER_PASS} --config="./config.dist.yml"
6767

6868
- name: Execute `traces:fetch:contributors` 🔧
6969
if: ${{ github.event_name == 'release' || github.event_name == 'schedule' }}
@@ -97,7 +97,9 @@ jobs:
9797
9898
- name: Move file (TopCompanies) 📁
9999
if: ${{ github.event_name == 'release' || github.event_name == 'schedule' }}
100-
run: mv ./traces/topcompanies.json ./dist
100+
run: |
101+
mv ./traces/topcompanies.json ./dist
102+
mv ./traces/topcompanies_prs.json ./dist
101103
102104
- name: Move file (NewContributors) 📁
103105
if: ${{ github.event_name == 'release' || github.event_name == 'schedule' }}

0 commit comments

Comments
 (0)