Skip to content

Commit

Permalink
Create refresh.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
IThundxr authored Apr 29, 2024
1 parent 887759b commit 14ffa29
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/refresh.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 14ffa29

Please sign in to comment.