This repository has been archived by the owner on Aug 28, 2024. It is now read-only.
check for new version #5
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: check for new version | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
workflow_dispatch: | |
jobs: | |
autobuild-sh: | |
runs-on: ubuntu-latest | |
name: 'check for release' | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v4 | |
- name: install deps | |
shell: bash | |
run: | | |
git config --global user.email "${{ github.actor }}@users.noreply.github.com" | |
git config --global user.name "${{ github.actor }}" | |
./autobuild.sh |