Skip to content

Update notice.json

Update notice.json #23

Workflow file for this run

name: Update Time
on:
push:
branches: [ gh-pages ]
#watch:
#types: [started]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Clone Pixiv_Spider
run: |
git clone https://github.com/Block-Network/AppWeb.git ./
- name: Update Time
run: |
echo $(TZ=UTC-8 date +%Y-%m-%d" "%H:%M:%S) > app/updateTime.txt
- name: Update Time
run: |
git config --global user.email [email protected]
git config --global user.name xiaowine
git add app/updateTime.txt
git commit -m "updateTime" -a
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ github.token }}