Skip to content

Commit

Permalink
ci: fix docker cp command
Browse files Browse the repository at this point in the history
  • Loading branch information
shk-webpr committed Jan 22, 2025
1 parent ddc83b9 commit 8d56354
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Build and publish
run: |
id=$(docker create ${{ env.REGISTRY }}/${{ github.repository }}-dependencies)
docker cp $id:/app - > .
docker cp -a $id:/app .
docker rm -v $id
docker build -f .docker/Dockerfile-build -t ${{ env.REGISTRY }}/${{ github.repository }}-build:${{ github.sha }} .
docker push ${{ env.REGISTRY }}/${{ github.repository }}-build:${{ github.sha }}
Expand Down

0 comments on commit 8d56354

Please sign in to comment.