Build index #46
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: Build index | |
on: | |
schedule: | |
- cron: 0 0 * * MON | |
workflow_dispatch: null | |
jobs: | |
build_and_commit: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
timeout-minutes: 360 | |
steps: | |
- name: Setup Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ^1.23 | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
with: | |
ssh-key: "${{secrets.GH_ACTIONS_KEY}}" | |
- name: Run main.go | |
working-directory: ./index_builder | |
run: go run main.go | |
- name: Commit and push changes | |
working-directory: ./index_builder | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Action" | |
git add ../lua/go_get/index.txt | |
git commit -m "Updated index.txt via GitHub Actions" | |
git push |