diff --git a/.github/actions/aggregate-worker/action.yaml b/.github/actions/aggregate-worker/action.yaml index 22ecf94438..828d37091c 100644 --- a/.github/actions/aggregate-worker/action.yaml +++ b/.github/actions/aggregate-worker/action.yaml @@ -24,11 +24,11 @@ runs: if: steps.restore.outputs.cache-matched-key != '' run: | cat ${{ env.REPO }}/pkg_build_status.csv >> ${{ env.AGG }}/pkg_build_status.csv - cat ${{ env.REPO }}/sources.repos | - if [ -f ${{ env.AGG }}/sources.repos ]; then + cat ${{ env.REPO }}/sources_exact.repos | + if [ -f ${{ env.AGG }}/sources_exact.repos ]; then tail -n+2 # skip "repositories:" else cat - fi | tee -a ${{ env.AGG }}/sources.repos - rm -f ${{ env.REPO }}/pkg_build_status.csv ${{ env.REPO }}/sources.repos ${{ env.REPO }}/local.yaml + fi | tee -a ${{ env.AGG }}/sources_exact.repos + rm -f ${{ env.REPO }}/pkg_build_status.csv ${{ env.REPO }}/sources_exact.repos ${{ env.REPO }}/local.yaml mv ${{ env.REPO }}/* ${{ env.AGG }}