From 844dc484acfe3e4d71ca2a179f99c01a1f92dcdd Mon Sep 17 00:00:00 2001 From: Nicolas Patry Date: Mon, 24 Jun 2024 16:38:54 +0200 Subject: [PATCH] Moving buildx install after tailscale ? --- .github/workflows/build.yaml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index c5979b1a..22fa06e3 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -34,10 +34,6 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v4 - - name: Initialize Docker Buildx - uses: docker/setup-buildx-action@v3 - with: - install: true - name: Inject slug/short variables uses: rlespinasse/github-slug-action@v4.4.1 - name: Construct harware variables @@ -78,6 +74,12 @@ jobs: uses: huggingface/tailscale-action@main with: authkey: ${{ secrets.TAILSCALE_AUTHKEY }} + slackChannel: ${{ secrets.SLACK_CIFEEDBACK_CHANNEL }} + slackToken: ${{ secrets.SLACK_CIFEEDBACK_BOT_TOKEN }} + - name: Initialize Docker Buildx + uses: docker/setup-buildx-action@v3 + with: + install: true - name: Login to GitHub Container Registry if: github.event_name != 'pull_request' uses: docker/login-action@v3