Deploy AnnoMate Docker to GHCR #1
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: Deploy AnnoMate Docker to GHCR | |
on: | |
[workflow_dispatch] | |
jobs: | |
build_and_publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build and push image | |
run: | | |
docker login --username cchu70 --pasword ${{ secrets.GHCR_LOGIN_TOKEN }} ghcr.io | |
docker build . --tag ghcr.io/getzlab/AnnoMate:latest | |
docker push ghcr.io/getzlab/AnnoMate:latest | |