Added p53 example notebook #11
This file contains hidden or 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 publish | |
| on: | |
| push: | |
| pull_request: | |
| release: | |
| types: [created] | |
| jobs: | |
| publish_docker_hub: | |
| name: Docker PopMaBoSS | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Connect Docker Hub | |
| run: | | |
| echo ${{ secrets.DOCKERHUB_TOKEN }} | docker login --username ${{ secrets.DOCKERHUB_USERNAME }} --password-stdin | |
| - name: Build Docker image | |
| run: | | |
| docker build -t popmaboss . | |
| - name: Upload Docker Hub | |
| run: | | |
| docker tag popmaboss:latest sysbiocurie/popmaboss:latest | |
| docker push sysbiocurie/popmaboss:latest |