Skip to content

Update records

Update records #1012

Workflow file for this run

# https://github.com/adi-g15/archlinux-repository/blob/master/.github/workflows/build.yaml
name: Update records
on:
schedule:
- cron: "30 1 * * *" # Run at 7:00 Indian Standard Time (+5:30)
env:
GIT_REMOTE: https://${{ github.actor }}:${{ github.token }}@github.com/${{ github.repository }}.git
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm install
- run: ./scripts/script.sh githubaction
# ex: shiftwidth=2 expandtab: