From fa46e0403da5ec92e297168a6047d0fd2c2968a5 Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Tue, 12 Apr 2022 14:30:07 +0300 Subject: [PATCH] Create build.yml --- .github/workflows/build.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..4008638 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,23 @@ +name: 'build' +on: + 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@v2 + - uses: luob/create-my-awesome@v1 + # Commit the change + # See https://github.com/EndBug/add-and-commit + - uses: EndBug/add-and-commit@v5 + with: + message: 'Update README.md' + env: + GITHUB_TOKEN: ${{ github.token }}