Skip to content

Commit

Permalink
ci: fixed copy wrong path
Browse files Browse the repository at this point in the history
  • Loading branch information
ABWassim authored and oknozor committed Mar 7, 2024
1 parent d7edf13 commit facdefb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/Deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -183,9 +183,9 @@ jobs:
mkdir -p target/armv7-unknown-linux-musleabihf/release/
mkdir -p target/aarch64-unknown-linux-gnu/release/
cp -r /home/runner/artifacts/x86_64-unknown-linux-musl target/x86_64-unknown-linux-musl/release/cog
cp -r /home/runner/artifacts/armv7-unknown-linux-musleabihf target/armv7-unknown-linux-musleabihf/release/cog
cp -r /home/runner/artifacts/aarch64-unknown-linux-gnu target/aarch64-unknown-linux-gnu/release/cog
cp -r /home/runner/artifacts/x86_64-unknown-linux-musl/. target/x86_64-unknown-linux-musl/release
cp -r /home/runner/artifacts/armv7-unknown-linux-musleabihf/. target/armv7-unknown-linux-musleabihf/release
cp -r /home/runner/artifacts/aarch64-unknown-linux-gnu/. target/aarch64-unknown-linux-gnu/release
chmod +x -R target/x86_64-unknown-linux-musl/release
chmod +x -R target/armv7-unknown-linux-musleabihf/release
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ There is a docker image for `cog` available [ghcr.io/cocogitto/latest](https://g
```shell
docker pull ghcr.io/cocogitto/cog:latest
docker run -t -v "$(pwd)":/app/ cog check
docker run -t -v "$(pwd)":/app/ check
```
Note that you need to mount a volume pointing to your target directory for `cog` to be able to operate on your git log.
Expand Down

0 comments on commit facdefb

Please sign in to comment.