feat: include muller plots from demonanalysis pkg (#52) #7
Workflow file for this run
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
############################################################################### | |
# | |
# AUTHOR: Maciej_Bak | |
# CONTACT: [email protected] | |
# CREATED: 07-05-2023 | |
# LICENSE: Apache_2.0 | |
# | |
############################################################################### | |
--- | |
name: Docker | |
on: | |
push: | |
tags: | |
- '[0-9]+.[0-9]+.[0-9]+' | |
jobs: | |
Docker: | |
name: ubuntu-22.04 | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
with: | |
submodules: "true" | |
- name: Build Docker image | |
run: docker build -t angrymaciek/warlock:latest . | |
- name: Container testrun | |
run: docker run --name warlock angrymaciek/warlock bash -c "source ~/.bashrc; bash testscript.sh" | |
- name: Publish image to DockerHub | |
env: | |
docker_username: ${{ secrets.DOCKER_USERNAME }} | |
docker_password: ${{ secrets.DOCKER_PASSWORD }} | |
run: | | |
repo_name="warlock" | |
tag=${GITHUB_REF##*/} | |
docker tag angrymaciek/${repo_name} angrymaciek/${repo_name}:${tag} | |
echo $docker_password | docker login -u $docker_username --password-stdin | |
docker push angrymaciek/${repo_name}:latest | |
docker push angrymaciek/${repo_name}:${tag} | |
... |