Skip to content

Update Formulas

Update Formulas #922

Workflow file for this run

name: Update Formulas
on:
workflow_dispatch:
schedule:
- cron: '20 */8 * * *'
jobs:
update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
persist-credentials: false
fetch-depth: 0
- uses: Amadevus/pwsh-script@v2.0.3
- name: Run Updaters
run: |
ls -lh
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
pwsh -c ./updaters/v2raya.ps1
pwsh -c ./updaters/v2raya-git.ps1
cat ./updaters/v2raya-unstable.sh | bash
- name: Push
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref }}