Nightly builds #530
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: Nightly builds | |
on: | |
schedule: | |
- cron: '0 2 * * *' # run at 2 AM UTC | |
jobs: | |
arch-linux: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Build Arch Linux container with Hanzo | |
run: docker build . -t hanzo:test | |
--build-arg HANZO_FULLNAME=test | |
--build-arg HANZO_USERNAME=test | |
--build-arg HANZO_EMAIL=test@example.com |