Create daily Docker image on develop #636
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: Create daily Docker image on develop | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 2 * * *" | |
jobs: | |
publish-docker-develop-image: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
ref: develop | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v1 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Building the openIMIS Frontend Docker image | |
run: | | |
LABEL=develop | |
docker build . --tag ghcr.io/openimis/openimis-fe:${LABEL} | |
docker push ghcr.io/openimis/openimis-fe:${LABEL} |