mirror of
https://github.com/wahyd4/journey-ad.git
synced 2026-08-09 05:16:05 +10:00
48 lines
1.3 KiB
YAML
48 lines
1.3 KiB
YAML
name: Update wakatime stats
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
pull_request:
|
|
branches: [master]
|
|
schedule:
|
|
- cron: "5 0 * * *"
|
|
|
|
jobs:
|
|
build:
|
|
name: Update-waka-stats
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
WAKATIME_API_KEY: ${{ secrets.WAKATIME_API_KEY }}
|
|
GH_TOKEN: ${{ secrets.GH_TOKEN }}
|
|
UPDATE_OPTION: GIST_AND_MARKDOWN
|
|
MARKDOWN_FILE: README.md
|
|
GIST_ID: a074b1d99d36db5b72c8ef9c1436a074
|
|
GIST_BARSTYLE: SOLIDLT
|
|
GIST_BARLENGTH: -1
|
|
GIST_TIMESTYLE: SHORT
|
|
|
|
steps:
|
|
- name: Set up Go 1.x
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: ^1.14
|
|
id: go
|
|
- name: Check out repo
|
|
uses: actions/checkout@v2
|
|
- uses: actions/setup-go@v2
|
|
- name: Clone and run waka-box
|
|
run: |-
|
|
git clone https://github.com/journey-ad/waka-box-go.git
|
|
cd waka-box-go && go build -o waka ./cmd/box/main.go
|
|
mv ./waka ../ && cd .. && rm -rf waka-box-go/
|
|
- name: Commit and push
|
|
run: |-
|
|
./waka
|
|
git config --global user.email "bot@github.com" && git config --global user.name "Waka-Bot"
|
|
git diff
|
|
git add README.md && git commit -m ":memo: update profile" || exit 0
|
|
git pull && git push
|
|
|
|
|