diff options
author | Owen Rudge <owen@owenrudge.net> | 2021-01-30 09:36:20 +0000 |
---|---|---|
committer | Owen Rudge <owen@owenrudge.net> | 2021-02-08 23:23:24 +0000 |
commit | 395e015282279e95910128ebcd221879a22f9421 (patch) | |
tree | 6019af6aa1f3ae10b41d96889d3d20bbbe36ad28 /.github/workflows | |
parent | 6c8f2227cdc01c978ec1cbf08a93925e148175b8 (diff) | |
download | openttd-395e015282279e95910128ebcd221879a22f9421.tar.xz |
Change: Convert .md to .rtf for Windows/Mac packages
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/release.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 63af9ff87..07feba918 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -461,6 +461,13 @@ jobs: run: | tar -xf source.tar.gz --strip-components=1 + - name: Install dependencies + env: + HOMEBREW_NO_AUTO_UPDATE: 1 + HOMEBREW_NO_INSTALL_CLEANUP: 1 + run: | + brew install pandoc + # The following step can be removed when the build VM is updated with a revision of # vcpkg dating from roughly 01/01/2021 or later. At that point, `doNotUpdateVcpkg` # can be set to `true` and the `vcpkgGitCommitId` can be removed. @@ -638,6 +645,11 @@ jobs: run: | tar -xf source.tar.gz --strip-components=1 + - name: Install dependencies + shell: bash + run: | + choco install pandoc + # "restore-cache" which is done by "run-vcpkg" uses Windows tar. # A git clone on windows marks a few files as read-only; when Windows tar # tries to extract the cache over this folder, it fails, despite the files |