From de457835a5855bbad0ae25065a588a3ce98ef455 Mon Sep 17 00:00:00 2001 From: Sergio Cazzolato Date: Thu, 5 Dec 2024 10:24:10 -0300 Subject: [PATCH] Update actions workflow to run in self hosted runners with spread installed As spread has moved to Canonical org, it is required to add a tag to the runners with spread pre-installed and confugured to run in google. In all the projects we are using the tag spread-enabled to differentiate the runners with spread and the org runners without it. --- .github/workflows/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index bfc45201..a7f3e785 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -11,7 +11,7 @@ on: jobs: run-tests: - runs-on: self-hosted + runs-on: '["self-hosted", "spread-enabled"]' steps: - uses: actions/checkout@v2