Skip to content

Commit

Permalink
improve tags on build
Browse files Browse the repository at this point in the history
  • Loading branch information
janf committed Nov 15, 2023
1 parent 138e34a commit b97fa29
Showing 1 changed file with 3 additions and 10 deletions.
13 changes: 3 additions & 10 deletions .github/workflows/build_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,6 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

# - name: Extract Titiler version
# - uses: actions/setup-python@v4
# with:
# python-version: '3.10'
# run: python -m pip install titiler && echo "TITILER_VERSION=$(python -c 'from titiler.application import __version__;print(__version__)')" >> $GITHUB_ENV
# #echo "GITHUB_SHA_SHORT=$(python -c 'from src/cogserver')" >> $GITHUB_ENV
# #run: python my_script.py
# - name: Echo Titiler version
# run: echo "za tit versions is {{ env.TITILER_VERSION }}"
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
Expand All @@ -50,5 +41,7 @@ jobs:
context: .
file: Dockerfile
push: ${{ github.ref == 'refs/heads/main'}}
tags: ${{ steps.tag.outputs.tag }}
tags: |
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.tag.outputs.tag }}
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit b97fa29

Please sign in to comment.