Skip to content

Commit

Permalink
Make container name dynamic
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaseizinger committed Jan 24, 2023
1 parent 37c2f37 commit aadac13
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/publish-interop-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,9 @@ jobs:
- name: Build and push ping interop docker image
run: |
cd test-plans;
cargo build --release
# cargo build --release
touch target/release/ping
mkdir -p target/release/
cp ../target/release/ping target/release
docker build -t ghcr.io/libp2p/rust-libp2p/ping-interop:${{ github.event.release.tag_name }} .
docker push ghcr.io/libp2p/rust-libp2p/ping-interop:${{ github.event.release.tag_name }}
docker build -t ghcr.io/$GITHUB_REPOSITORY/ping-interop:${{ github.event.release.tag_name }} .
docker push ghcr.io/$GITHUB_REPOSITORY/ping-interop:${{ github.event.release.tag_name }}

0 comments on commit aadac13

Please sign in to comment.