This commit is contained in:
kamuikatsurgi 2025-02-28 14:16:34 +05:30
parent f169f788d7
commit dad791aaca
No known key found for this signature in database

View file

@ -15,8 +15,8 @@ concurrency:
cancel-in-progress: true cancel-in-progress: true
jobs: jobs:
build-ubuntu: build:
name: Build (Ubuntu-22.04) name: Build
if: (github.event.action != 'closed' || github.event.pull_request.merged == true) if: (github.event.action != 'closed' || github.event.pull_request.merged == true)
strategy: strategy:
@ -70,11 +70,11 @@ jobs:
run: | run: |
choco install mingw -y choco install mingw -y
- uses: actions/cache@v3 - name: Cache Go modules
uses: actions/cache@v3
with: with:
path: | path: |
${{ env.USERPROFILE }}\go\pkg\mod ~/go/pkg/mod
${{ env.LOCALAPPDATA }}\go-build
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: ${{ runner.os }}-go- restore-keys: ${{ runner.os }}-go-