diff options
author | Stephan Dilly <dilly.stephan@gmail.com> | 2020-07-29 23:00:10 +0200 |
---|---|---|
committer | Stephan Dilly <dilly.stephan@gmail.com> | 2020-07-29 23:00:10 +0200 |
commit | 1ac8ee6e4f5daa5013309833d37a1951552b21fd (patch) | |
tree | b135544d931ff27a325277d784d13dc407b3e5b9 | |
parent | ddd11156c63d7a0fbaa5c6d0b28e00d0b8d145c3 (diff) |
fix CD on windows like done for CI previouslyv0.9.0
-rw-r--r-- | .github/workflows/cd.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index a967c18c..555a5841 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -14,6 +14,12 @@ jobs: runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 + + - name: WSL Setup + if: matrix.os == 'windows-latest' + run: | + choco install wsl-ubuntu-1804 + - name: Get version id: get_version run: echo ::set-output name=version::${GITHUB_REF/refs\/tags\//} |