build #930
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' | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
schedule: | |
# This expression means every day at UTC 00:00 | |
# See https://crontab.guru/examples.html for more examples | |
- cron: '0 0 * * *' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: luob/create-my-awesome@v1 | |
# Commit the change | |
# See https://github.com/EndBug/add-and-commit | |
- uses: EndBug/add-and-commit@v9 | |
with: | |
message: 'Update README.md' | |
env: | |
GITHUB_TOKEN: ${{ github.token }} |