Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Update Repository

Update Repository #471

Workflow file for this run

name: Update Repository
on:
schedule:
- cron: "0 0 * * *"
push:
branches: [ "*" ]
workflow_dispatch:
jobs:
update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: fossdd/action-setup-pijul@v1
- name: Remove old data
run: rm -fr *
- name: Clone Pijul
run: pijul clone https://nest.pijul.com/pijul/pijul tmp
- name: Clean up
run: mv tmp/* . || true && rm -r tmp
- name: Commit & Push
run: |-
git config --global user.email "${{ secrets.GIT_EMAIL }}"
git config --global user.name "${{ secrets.GIT_NAME }}"
git add .
git commit -m 'Update pijul'
git push origin main || true
Morty Proxy This is a proxified and sanitized view of the page, visit original site.