You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by pa...@apache.org on 2023/06/12 16:10:22 UTC

[arrow-nanoarrow] branch main updated: chore: Login to container repository in Docker build workflow (#228)

This is an automated email from the ASF dual-hosted git repository.

paleolimbot pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-nanoarrow.git


The following commit(s) were added to refs/heads/main by this push:
     new 572abc5  chore: Login to container repository in Docker build workflow (#228)
572abc5 is described below

commit 572abc5c78d077e05fba6256c337bcba49e0e233
Author: Dewey Dunnington <de...@dunnington.ca>
AuthorDate: Mon Jun 12 13:10:16 2023 -0300

    chore: Login to container repository in Docker build workflow (#228)
    
    Closes #225.
---
 .github/workflows/docker-build.yaml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/.github/workflows/docker-build.yaml b/.github/workflows/docker-build.yaml
index 05d21f8..17f683a 100644
--- a/.github/workflows/docker-build.yaml
+++ b/.github/workflows/docker-build.yaml
@@ -92,6 +92,12 @@ jobs:
     runs-on: ubuntu-latest
     needs: build-docker
     steps:
+    - name: Login to GitHub Container Registry
+      uses: docker/login-action@v2
+      with:
+        registry: ghcr.io
+        username: ${{ github.actor }}
+        password: ${{ secrets.GITHUB_TOKEN }}
     - name: Build
       run: |
         docker manifest create \