diff -r 54c0e2662dd3 -r 0623d6d4616b .github/workflows/prep_sources.yml --- a/.github/workflows/prep_sources.yml Sun Aug 14 19:15:04 2022 +0200 +++ b/.github/workflows/prep_sources.yml Sun Aug 14 22:45:52 2022 +0200 @@ -17,6 +17,10 @@ steps: + - uses: actions/checkout@v3 + with: + path: beremiz_public_dist + # repositories are directly checked out where Makerfile expects them to be - uses: actions/checkout@v3 with: @@ -71,10 +75,10 @@ EOF - name: Tar files - run: tar -cvf build.tar build + run: tar -cvf sources.tar . - name: Upload source artifact uses: actions/upload-artifact@v3 with: name: source_package - path: build.tar + path: sources.tar