From c0a33bd537689905eb840f8ec62510b35138f7f5 Mon Sep 17 00:00:00 2001 From: Daniel Cazzulino Date: Tue, 3 Sep 2024 00:04:13 -0300 Subject: [PATCH] Use windows agent for build, variable for publish This should allow us to reuse the oss template for publish too, and tweak per-repo as needed. --- .github/workflows/os-matrix.json | 1 + .github/workflows/publish.yml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/os-matrix.json diff --git a/.github/workflows/os-matrix.json b/.github/workflows/os-matrix.json new file mode 100644 index 000000000..aa561ef15 --- /dev/null +++ b/.github/workflows/os-matrix.json @@ -0,0 +1 @@ +["windows-latest"] \ No newline at end of file diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 5d751d65e..bcd507238 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -18,7 +18,7 @@ env: jobs: publish: - runs-on: ubuntu-latest + runs-on: ${{ variables.publish.agent || 'ubuntu-latest' }} steps: - name: 🤘 checkout uses: actions/checkout@v4