Unverified Commit 872cc3dc by Edward Thomson Committed by GitHub

Update main.yml

parent eb7e17ee
......@@ -15,20 +15,20 @@ jobs:
uses: actions/checkout@v2
- name: Calculate image label
run: |
git log -1 -- azure-pipelines/docker/\*
cd azure-pipelines/docker && git log -1 -- ./
echo "::set-env name=docker-label::libgit2-$(git log -1 --pretty=format:"%h" -- azure-pipelines/docker/\*)"
- name: Log in to GitHub Packages
run: |
docker login https://docker.pkg.github.com -u ${{github.actor}} -p ${{github.token}}
- name: Download image
run: |
docker pull docker.pkg.github.com/${{github.repository}}/xenial:${{ env.docker-label }} || echo "::set-env name=docker-exists::true"
- name: Build image
run: |
docker build -t docker.pkg.github.com/${{github.repository}}/xenial:${{ env.docker-label }} --build-arg BASE=ubuntu:xenial -f xenial .
working-directory: azure-pipelines/docker
if: ${{env.docker-exists != true}}
- name: Publish image
run: |
docker push docker.pkg.github.com/${{github.repository}}/xenial:${{env.docker-label}}
if: ${{env.docker-exists != true}}
# - name: Log in to GitHub Packages
# run: |
# docker login https://docker.pkg.github.com -u ${{github.actor}} -p ${{github.token}}
# - name: Download image
# run: |
# docker pull docker.pkg.github.com/${{github.repository}}/xenial:${{ env.docker-label }} || echo "::set-env name=docker-exists::true"
# - name: Build image
# run: |
# docker build -t docker.pkg.github.com/${{github.repository}}/xenial:${{ env.docker-label }} --build-arg BASE=ubuntu:xenial -f xenial .
# working-directory: azure-pipelines/docker
# if: ${{env.docker-exists != true}}
# - name: Publish image
# run: |
# docker push docker.pkg.github.com/${{github.repository}}/xenial:${{env.docker-label}}
# if: ${{env.docker-exists != true}}
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