chore(actions): attempt to fix builds

This commit is contained in:
omo50
2026-03-04 17:40:56 -06:00
parent 2b34658858
commit 601affafd4

View File

@@ -32,21 +32,13 @@ jobs:
with:
fetch-depth: 1
- name: Cache Packwiz Binary
uses: actions/cache@v3
id: cache-packwiz
with:
path: ~/go/bin/packwiz
key: packwiz-binary-${{ runner.os }}-v2
- name: Set up Go
if: steps.cache-packwiz.outputs.cache-hit != 'true'
uses: actions/setup-go@v3
with:
go-version: 'stable'
cache: false
- name: Install Packwiz
if: steps.cache-packwiz.outputs.cache-hit != 'true'
run: go install github.com/packwiz/packwiz@latest
- name: Add Packwiz to PATH