From bcfcc8c71c78f24fdbe28c6caaf537ebe3dc0246 Mon Sep 17 00:00:00 2001 From: Athanasius Date: Thu, 12 Jan 2023 13:06:53 +0000 Subject: [PATCH] windows-build/tar: tar needs to be in job *after* `variables` At least we had `-f EDMarketConnector-release-.tar.gz ` which implies the `needs.variables.outputs.sem_ver` variable wasn't yet set. --- .github/workflows/windows-build.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/windows-build.yml b/.github/workflows/windows-build.yml index 20b48c30..ef1108ad 100644 --- a/.github/workflows/windows-build.yml +++ b/.github/workflows/windows-build.yml @@ -21,6 +21,9 @@ jobs: script: | core.setOutput('sem_ver', '${{ github.ref_name }}'.replaceAll('Release\/', '')) + linux_build: + runs-on: "ubuntu-latest" + steps: - uses: actions/checkout@v3 with: submodules: true