diff options
author | George L. Albany <Megacake1234@gmail.com> | 2023-03-31 16:24:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-31 16:24:15 +0200 |
commit | a5b2bc18dd0f087c8f211c632fe8701b63670155 (patch) | |
tree | 62783f6a2f3d2866dcaf06ea2cbc1ea124460254 /.github/workflows | |
parent | 3384b21177a160f7192a2e4877eea3b29880bf4e (diff) | |
parent | c174ed6856cea2b0ee3fe0a719e8e351be9452c1 (diff) |
Merge pull request #80 from Spartan322/fix/workflow-wine-failure
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/builds.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml index be33095..88d5200 100644 --- a/.github/workflows/builds.yml +++ b/.github/workflows/builds.yml @@ -183,7 +183,8 @@ jobs: - name: Install WINE id: wine_install run: | - sudo apt install wine64 + sudo apt update + sudo apt install --fix-missing wine64 echo "WINE_PATH=$(which wine64)" >> $GITHUB_OUTPUT - name: Export game @@ -212,4 +213,4 @@ jobs: name: ${{ github.event.repository.name }} retention-days: 15 path: | - ${{ steps.export_game.outputs.archive_directory }}
\ No newline at end of file + ${{ steps.export_game.outputs.archive_directory }} |