Switch back docker/login-action

This commit is contained in:
Ben Meadors
2024-12-18 07:15:48 -06:00
parent af79970ad7
commit 68413486e3

View File

@@ -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' }}