Skip to content

Commit

Permalink
Move docker login before docker setup on ARM
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkoBarisic committed Jan 24, 2024
1 parent 5a08558 commit 73e700c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release-full-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,18 +138,18 @@ jobs:
- name: Set up QEMU
uses: docker/setup-qemu-action@v2

- name: Log in to Docker Hub
run: |
security unlock-keychain -p ${{ secrets.HOST_PASSWORD }}
docker login -u ${{ secrets.DOCKERHUB_USERNAME }} -p ${{ secrets.DOCKERHUB_TOKEN }}
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2

- name: Available platforms
run: echo ${{ steps.buildx.outputs.platforms }}

- name: Log in to Docker Hub
run: |
security unlock-keychain -p ${{ secrets.HOST_PASSWORD }}
docker login -u ${{ secrets.DOCKERHUB_USERNAME }} -p ${{ secrets.DOCKERHUB_TOKEN }}
- name: Download memgraph binaries
run: |
curl -L https://download.memgraph.com/memgraph/v${{ github.event.inputs.memgraph_version }}/debian-11-aarch64/memgraph_${{ github.event.inputs.memgraph_version }}-1_arm64.deb > memgraph-arm64.deb
Expand Down

0 comments on commit 73e700c

Please sign in to comment.