From ac56c3d256391889208263c5028abfb284779d27 Mon Sep 17 00:00:00 2001 From: Daniel Cazzulino Date: Tue, 3 Sep 2024 00:19:15 -0300 Subject: [PATCH] Fix repo variable actions context --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index ee76230b3..ca54c5dec 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -18,7 +18,7 @@ env: jobs: publish: - runs-on: ${{ variables.publish.agent || 'ubuntu-latest' }} + runs-on: ${{ vars.PUBLISH_AGENT || 'ubuntu-latest' }} steps: - name: 🤘 checkout uses: actions/checkout@v4