Refresh #6
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Refresh | |
on: 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 |