diff --git a/.github/workflows/dogfood.yml b/.github/workflows/dogfood.yml index d4ddb694e..a13fcd1a6 100644 --- a/.github/workflows/dogfood.yml +++ b/.github/workflows/dogfood.yml @@ -21,12 +21,12 @@ jobs: json: ${{ steps.discover.outputs.json}} steps: - uses: actions/checkout@v3 - - uses: input-output-hk/catalyst-ci/actions/setup@master + - uses: input-output-hk/catalyst-ci/actions/setup@dogfood with: aws_role_arn: ${{ env.AWS_ROLE_ARN }} aws_region: ${{ env.AWS_REGION }} earthly_version: ${{ env.EARTHLY_VERSION }} - - uses: input-output-hk/catalyst-ci/actions/discover@master + - uses: input-output-hk/catalyst-ci/actions/discover@dogfood id: discover with: targets: ${{ env.EARTHLY_TARGET }} @@ -44,14 +44,20 @@ jobs: - uses: actions/checkout@v3 - name: Check var run: echo ${{ matrix.earthfile }} - - uses: input-output-hk/catalyst-ci/actions/setup@master + - uses: input-output-hk/catalyst-ci/actions/setup@dogfood with: aws_role_arn: ${{ env.AWS_ROLE_ARN }} aws_region: ${{ env.AWS_REGION }} earthly_version: ${{ env.EARTHLY_VERSION }} - - uses: input-output-hk/catalyst-ci/actions/run@master + - uses: input-output-hk/catalyst-ci/actions/run@dogfood + id: build with: earthfile: ${{ matrix.earthfile }} target: ${{ env.EARTHLY_TARGET }} + artifact_output: out flags: --platform ${{ matrix.platform }} - runner_address: ${{ secrets.EARTHLY_SATELLITE_ADDRESS }} \ No newline at end of file + runner_address: ${{ secrets.EARTHLY_SATELLITE_ADDRESS }} + - uses: actions/upload-artifact@v3 + with: + name: ${{ matrix.earthfile }}-${{ matrix.platform }}-${{ env.EARTHLY_TARGET }} + path: out \ No newline at end of file