diff options
author | René 'Necoro' Neumann <necoro@necoro.eu> | 2022-01-29 22:18:49 +0100 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.eu> | 2022-01-29 22:18:49 +0100 |
commit | 8b8bc1027a9bde5eb5906a8695205b5cd8fa67b4 (patch) | |
tree | 8b700d229f884dc405a0c2e3720656f0873b038a | |
parent | b38464fee25d72f1ec8ed7bef748f8935e6b5d09 (diff) | |
download | engarde-importer-8b8bc1027a9bde5eb5906a8695205b5cd8fa67b4.tar.gz engarde-importer-8b8bc1027a9bde5eb5906a8695205b5cd8fa67b4.tar.bz2 engarde-importer-8b8bc1027a9bde5eb5906a8695205b5cd8fa67b4.zip |
[release]: Fix multiple issues
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/release.yml | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0a16dab..2e742b5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -38,19 +38,17 @@ jobs: name: Install Dependencies run: | sudo apt-get --allow-releaseinfo-change update - sudo apt-get install -y libglfw3-dev libfreetype6-dev + sudo apt-get install -y libglfw3-dev libfreetype6-dev xorg-dev - - name: Go Build Cache + - name: Go Cache uses: actions/cache@v2 with: - path: ${{ steps.go-cache-paths.outputs.go-build }} - key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }} - - - name: Go Mod Cache - uses: actions/cache@v2 - with: - path: ${{ steps.go-cache-paths.outputs.go-mod }} - key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }} + path: | + ${{ steps.go-cache-paths.outputs.go-build }} + ${{ steps.go-cache-paths.outputs.go-mod }} + key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} + restore-keys: | + ${{ runner.os }}-go- - name: Checkout uses: actions/checkout@v2 |