Skip to content

Commit

Permalink
Added pipeline to automatically update the Cask tap
Browse files Browse the repository at this point in the history
  • Loading branch information
sandervankasteel committed Oct 30, 2024
1 parent 8ab1488 commit 4f0454a
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/check_and_update_release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: "Periodic check and update of the Cask tap"
on:
schedule:
- cron: "0 */2 * * *"
jobs:
check_and_update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Run updating script
run: ./check_release.sh

- name: Commit & Push changes
uses: actions-js/push@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: "main"
message: "Updated to latest version."

0 comments on commit 4f0454a

Please sign in to comment.