Skip to content

Commit

Permalink
fix up test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
binhex committed Feb 23, 2021
1 parent bc5c0e4 commit 1167284
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/docker-manual-triggered-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,12 @@ jobs:
- name: Build Docker image and tag
run: |
docker build \
--tag ${{ github.repository }}:latest \
--tag ${{ github.repository }}:${{ steps.identify_tag.outputs.tag }} \
--tag ghcr.io/${{ github.repository }}:latest \
--tag ghcr.io/${{ github.repository }}:${{ steps.identify_tag.outputs.tag }} \
--tag ${{ github.repository }}:${{ github.event.inputs.tags }} \
--tag ghcr.io/${{ github.repository }}:${{ github.event.inputs.tags }} \
.
- name: Push Docker image to Docker Hub
run: |
docker push ${{ github.repository }}:${{ github.event.inputs.tags }}
- name: Push Docker image to GitHub Container Registry (GHCR)
run: |
docker push ghcr.io/${{ github.repository }}:${{ github.event.inputs.tags }}
docker push ghcr.io/${{ github.repository }}:${{ github.event.inputs.tags }}

0 comments on commit 1167284

Please sign in to comment.