diff --git a/.github/workflows/refresh.yml b/.github/workflows/refresh.yml new file mode 100644 index 00000000..1c0f1e2d --- /dev/null +++ b/.github/workflows/refresh.yml @@ -0,0 +1,26 @@ +name: Refresh + +on: [push, workflow_dispatch] + +jobs: + release: + runs-on: ubuntu-latest + steps: + - name: Checkout Repository + uses: actions/checkout@v4 + + - name: Setup Go + uses: actions/setup-go@v5 + with: + go-version: "1.22.1" + check-latest: true + cache: false # Not a go project, we abuse this to install packwiz + + - name: Install Packwiz + run: go install github.com/packwiz/packwiz@latest + + - name: Run packwiz refresh + run: packwiz refresh + + - name: Commit Changes + uses: stefanzweifel/git-auto-commit-action@8621497c8c39c72f3e2a999a26b4ca1b5058a842