Unverified Commit d93ce05b authored by kladko's avatar kladko

Added image tagging

parent 30513242
...@@ -12,7 +12,8 @@ jobs: ...@@ -12,7 +12,8 @@ jobs:
- name: test - name: test
run: echo ${GITHUB_REF##*/} run: echo ${GITHUB_REF##*/}
- name: test2 - name: test2
run: python3 -c "return ('${GITHUB_REF##*/}' == 'two_docker_images')"; echo $? run: if [ ${GITHUB_REF##*/} -eq "two_docker_images" ]; then echo "haha"; fi";
- name: Login to docker - name: Login to docker
env: env:
GITHUB_TOKEN: ${{ secrets.DOCKER_SECRET }} GITHUB_TOKEN: ${{ secrets.DOCKER_SECRET }}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment