Skip to content

Commit

Permalink
Update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
mosonyi committed Aug 9, 2021
1 parent e7f96a6 commit be28877
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 5 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/parachain-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
TAGS="$TAGS,${DOCKER_IMAGE}:latest"
fi
echo ::set-output name=tags::${TAGS}
echo ${{ steps.prep.outputs.tags }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
with:
Expand Down Expand Up @@ -77,4 +77,7 @@ jobs:
# cache-to: type=local,dest=/tmp/.buildx-cache

- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}
run:
echo ${{ steps.docker_build.outputs.digest }}
echo ${{ steps.buildx.outputs.name }}
echo ${{ steps.prep.outputs.tags }}
19 changes: 16 additions & 3 deletions .github/workflows/parachain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,16 @@ jobs:
TAGS="$TAGS,${DOCKER_IMAGE}:latest"
fi
echo ::set-output name=tags::${TAGS}
echo ${{ steps.prep.outputs.tags }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
with:
platforms: all

- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1

- name: Login to Docker Hub
uses: docker/login-action@v1
with:
Expand All @@ -60,6 +68,11 @@ jobs:
tags: ${{ steps.prep.outputs.tags }}

- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}
run:
echo ${{ steps.docker_build.outputs.digest }}
echo ${{ steps.buildx.outputs.name }}
echo ${{ steps.prep.outputs.tags }}




0 comments on commit be28877

Please sign in to comment.