update-and-publish #1837
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: update-and-publish | |
on: | |
schedule: | |
# run every 12 hours | |
- cron: '0 */12 * * *' | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: build | |
uses: docker://ngmiller/bips-dev:latest | |
- name: commit and push | |
uses: EndBug/[email protected] | |
with: | |
default_author: github_actions | |
branch: master | |
message: 'cron: update bips submodule and build' | |
push: true |