From 2f99a8dbb8c578987d3bf279db84dd0a065b26c9 Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Sun, 9 Jun 2024 07:40:57 -0500 Subject: [PATCH 1/4] Try latest version --- .github/workflows/build_native.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_native.yml b/.github/workflows/build_native.yml index ff0c2eaf6..f7c83eddb 100644 --- a/.github/workflows/build_native.yml +++ b/.github/workflows/build_native.yml @@ -53,7 +53,7 @@ jobs: - name: Docker login if: ${{ github.event_name != 'pull_request_target' && github.event_name != 'pull_request' }} - uses: docker/login-action@v3 + uses: docker/login-action@v3.2.0 with: username: meshtastic password: ${{ secrets.DOCKER_FIRMWARE_TOKEN }} From 4da3f202e516ba0b1c3d772957c36a783e3876ef Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Sun, 9 Jun 2024 07:55:45 -0500 Subject: [PATCH 2/4] Roll-back to v2 --- .github/workflows/build_native.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_native.yml b/.github/workflows/build_native.yml index f7c83eddb..115f85bbe 100644 --- a/.github/workflows/build_native.yml +++ b/.github/workflows/build_native.yml @@ -53,7 +53,7 @@ jobs: - name: Docker login if: ${{ github.event_name != 'pull_request_target' && github.event_name != 'pull_request' }} - uses: docker/login-action@v3.2.0 + uses: docker/login-action@v2.2.0 with: username: meshtastic password: ${{ secrets.DOCKER_FIRMWARE_TOKEN }} From 01a214aa5967924af814ca76c4bdcdf2ce41b1b3 Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Sun, 9 Jun 2024 08:32:31 -0500 Subject: [PATCH 3/4] Add continues on failing docker steps --- .github/workflows/build_native.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_native.yml b/.github/workflows/build_native.yml index 115f85bbe..8fe8e6c31 100644 --- a/.github/workflows/build_native.yml +++ b/.github/workflows/build_native.yml @@ -53,17 +53,20 @@ jobs: - name: Docker login if: ${{ github.event_name != 'pull_request_target' && github.event_name != 'pull_request' }} - uses: docker/login-action@v2.2.0 + uses: docker/login-action@v3 + continue-on-error: true # FIXME: Failing docker login auth with: username: meshtastic password: ${{ secrets.DOCKER_FIRMWARE_TOKEN }} - name: Docker setup if: ${{ github.event_name != 'pull_request_target' && github.event_name != 'pull_request' }} + continue-on-error: true # FIXME: Failing docker login auth uses: docker/setup-buildx-action@v3 - name: Docker build and push tagged versions if: ${{ github.event_name == 'workflow_dispatch' }} + continue-on-error: true # FIXME: Failing docker login auth uses: docker/build-push-action@v5 with: context: . @@ -73,6 +76,7 @@ jobs: - name: Docker build and push if: ${{ github.ref == 'refs/heads/master' && github.event_name != 'pull_request_target' && github.event_name != 'pull_request' }} + continue-on-error: true # FIXME: Failing docker login auth uses: docker/build-push-action@v5 with: context: . From 1d98e48bab8d47b3ec4f3f5547ec9d565a523d9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20G=C3=B6ttgens?= Date: Sun, 9 Jun 2024 16:33:50 +0200 Subject: [PATCH 4/4] Update main_matrix.yml --- .github/workflows/main_matrix.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main_matrix.yml b/.github/workflows/main_matrix.yml index 702a7875e..89b71acb8 100644 --- a/.github/workflows/main_matrix.yml +++ b/.github/workflows/main_matrix.yml @@ -158,7 +158,7 @@ jobs: id: version - name: Move files up - run: mv -b -t ./ ./release/meshtasticd_linux_* ./bin/config-dist.yaml + run: mv -b -t ./ ./release/meshtasticd_linux_* ./bin/config-dist.yaml ./bin/device-*.sh ./bin/device-*.bat - name: Repackage in single firmware zip uses: actions/upload-artifact@v4