Sync CI #746
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: Sync CI | |
on: | |
schedule: | |
- cron: 0 0 * * * | |
workflow_dispatch: | |
push: | |
branches: [ "master" ] | |
permissions: write-all | |
env: | |
LICENSE_KEY: ${{ secrets.GEOLITE_LICENSE_KEY }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GITHUB_USER: ${{ github.actor }} | |
jobs: | |
sync: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Checkout & Install | |
run: sudo apt-get clean all && sudo apt-get -qq -y update && sudo apt-get upgrade -y && sudo apt-get install -y axel && chmod 755 sync.sh | |
- name: Sync | |
run: ./sync.sh | |