# HG changeset patch # User Edouard Tisserant # Date 1659023050 -7200 # Node ID 2f3d1cd0bd643bc2549e3cde5b6c9b251620a5df # Parent 1ed6c981286386bd8e0cb33d3ab4258917b58c59 GH CI : use artifacts to get data flowing from one workflow to the other diff -r 1ed6c9812863 -r 2f3d1cd0bd64 .github/workflows/build_bundles.yml --- a/.github/workflows/build_bundles.yml Thu Jul 28 17:20:59 2022 +0200 +++ b/.github/workflows/build_bundles.yml Thu Jul 28 17:44:10 2022 +0200 @@ -13,6 +13,15 @@ runs-on: ubuntu-latest steps: + - uses: actions/checkout@v3 + with: + path: beremiz_public_dist + + - name: Download source artifact + uses: actions/download-artifact@v3 + with: + name: source_package + - name: Cache docker image id: cache-docker uses: actions/cache@v3 diff -r 1ed6c9812863 -r 2f3d1cd0bd64 .github/workflows/prep_sources.yml --- a/.github/workflows/prep_sources.yml Thu Jul 28 17:20:59 2022 +0200 +++ b/.github/workflows/prep_sources.yml Thu Jul 28 17:44:10 2022 +0200 @@ -21,10 +21,6 @@ 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: @@ -60,3 +56,8 @@ canfestival ${{ env.canfestival_revisionid }} EOF + - name: Upload source artifact + uses: actions/upload-artifact@v3 + with: + name: source_package + path: build