diff --git a/.github/workflows/daily_reports.yaml b/.github/workflows/daily_reports.yaml index ad0d4f0fcb..d222c35baa 100644 --- a/.github/workflows/daily_reports.yaml +++ b/.github/workflows/daily_reports.yaml @@ -17,12 +17,10 @@ jobs: features: ["default", "levm"] steps: - uses: actions/checkout@v4 - # - name: Build ethrex image with features ${{ matrix.features }} - # run: docker build -t ethrex:${{ matrix.features }} --build-arg BUILD_FLAGS="--features ${{ matrix.features }}" . + - name: Build ethrex image with features ${{ matrix.features }} + run: docker build -t ethrex:${{ matrix.features }} --build-arg BUILD_FLAGS="--features ${{ matrix.features }}" . - name: Save image - # docker save ethrex:${{ matrix.features }} > ${{ matrix.features }}-image.tar - run: | - touch ${{ matrix.features }}-image.tar + run: docker save ethrex:${{ matrix.features }} > ${{ matrix.features }}-image.tar - uses: actions/upload-artifact@v4 with: name: ethrex-image-${{ matrix.features }} @@ -55,14 +53,14 @@ jobs: name: ethrex-image-${{ matrix.image }} path: images - - name: Debug images folder - run: echo $(ls images) - - name: Checkout sources uses: actions/checkout@v4 + - name: Debug images folder + run: echo $(ls images) + - name: Load image for ethrex build (${{ matrix.image }} feature set) - run: docker load < images/ethrex-image-${{matrix.image}} + run: docker load < images/${{matrix.image}}-image.tar - name: Setup Go uses: actions/setup-go@v5