Switch back docker/login-action

pull/5592/head^2
Ben Meadors 2024-12-18 07:15:48 -06:00
rodzic af79970ad7
commit 68413486e3
1 zmienionych plików z 6 dodań i 3 usunięć

Wyświetl plik

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