updated application parameters for the newly supported apps in h2h #4088
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: Docker Image CI | |
on: | |
push: | |
branches-ignore: | |
- dependabot/** | |
- '*-patch-*' | |
- dev/** | |
schedule: | |
- cron: '0 11 * * 0' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
with: | |
submodules: recursive | |
- name: Publish Docker image | |
uses: elgohr/[email protected] | |
with: | |
name: stanfordaha/garnet | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
cache: false |