From 68413486e3401d7503efffa60723a352f6ab5fa2 Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Wed, 18 Dec 2024 07:15:48 -0600 Subject: [PATCH] Switch back docker/login-action --- .github/workflows/build_native.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_native.yml b/.github/workflows/build_native.yml index d9591e72c..b1b012705 100644 --- a/.github/workflows/build_native.yml +++ b/.github/workflows/build_native.yml @@ -53,9 +53,12 @@ jobs: - name: Docker login if: ${{ github.event_name != 'pull_request_target' && github.event_name != 'pull_request' }} - run: | - echo ${{ secrets.DOCKER_FIRMWARE_TOKEN }} | docker login -u meshtastic --password-stdin - continue-on-error: true + uses: docker/login-action@v3 + continue-on-error: true # FIXME: Failing docker login auth + with: + logout: true + username: meshtastic + password: ${{ secrets.DOCKER_FIRMWARE_TOKEN }} - name: Docker setup if: ${{ github.event_name != 'pull_request_target' && github.event_name != 'pull_request' }}