Skip to content

Commit

Permalink
clean up tags and labels
Browse files Browse the repository at this point in the history
  • Loading branch information
taylordowns2000 committed Nov 2, 2023
1 parent 2186a5c commit 394e9cd
Showing 1 changed file with 3 additions and 11 deletions.
14 changes: 3 additions & 11 deletions .github/workflows/dockerize.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
id: meta
uses: docker/metadata-action@v5
with:
images: name/app
images: openfn/ws-worker
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
Expand All @@ -26,19 +26,11 @@ jobs:
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Log tags from meta step
run: |
echo ${{ steps.meta.outputs.tags }}
# - name: Log labels from meta step
# run: |
# echo ${{ steps.meta.outputs.labels }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
target: ws-worker
tags: 'openfn/ws-worker:latest'
# tags: |
# type=semver,pattern=openfn/ws-worker:{{raw}}
# labels: ${{ steps.meta.outputs.labels }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit 394e9cd

Please sign in to comment.