gollum docker scheduled ci #585
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: gollum docker scheduled ci | |
on: | |
schedule: | |
- cron: '0 6 * * *' | |
env: | |
DOCKERHUB_USERNAME: elcfd | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
version: [5.3.3, 5.3.0-178a6da1-custom] | |
steps: | |
- name: install taskfile | |
uses: arduino/setup-task@v2 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: source code checkout | |
uses: actions/checkout@v4 | |
- name: run shellcheck | |
uses: ludeeus/action-shellcheck@master | |
- name: build | |
run: task VERSION="${{matrix.version}}" build | |
- name: check | |
run: task VERSION="${{matrix.version}}" check |