Merge pull request #323 from pangenome/fix_scripts_dockerfile #305
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: Publish container to github container registry | |
# Documentation on the primary Action used here: https://github.com/marketplace/actions/publish-docker | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
publish_release: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@master | |
- name: Publish to Registry | |
uses: elgohr/Publish-Docker-Github-Action@v4 | |
with: | |
name: pangenome/pggb | |
username: subwaystation | |
password: ${{ secrets.PGGB_DOCKER_TOKEN }} | |
registry: ghcr.io | |
tags: "latest" | |
snapshot: true | |