From d5b307a8b5db9116bb41d928e99aac07235a4e34 Mon Sep 17 00:00:00 2001 From: Louis Dionne Date: Sat, 16 Nov 2024 11:57:08 +0100 Subject: [PATCH] [libc++] Adjust docker image creation workflow --- .github/workflows/libcxx-build-containers.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/libcxx-build-containers.yml b/.github/workflows/libcxx-build-containers.yml index 92b2e3056da9a..2d040f712ce59 100644 --- a/.github/workflows/libcxx-build-containers.yml +++ b/.github/workflows/libcxx-build-containers.yml @@ -29,6 +29,8 @@ jobs: build-and-push: runs-on: ubuntu-latest if: github.repository_owner == 'llvm' + permissions: + packages: write steps: - uses: actions/checkout@v4 @@ -36,10 +38,14 @@ jobs: - name: Build the Linux builder image working-directory: libcxx/utils/ci run: docker compose build actions-builder + env: + TAG: ${{ github.sha }} # - name: Build the Android builder image # working-directory: libcxx/utils/ci # run: docker compose build android-buildkite-builder + # env: + # TAG: ${{ github.sha }} - name: Log in to GitHub Container Registry uses: docker/login-action@v3