From 3b54152eb3c6cc3a0959c12db7c31f2f3191c0c7 Mon Sep 17 00:00:00 2001 From: Giuseppe Lo Presti Date: Mon, 12 Aug 2024 12:07:39 +0200 Subject: [PATCH] CI fixes --- .github/workflows/build-and-publish.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/build-and-publish.yml b/.github/workflows/build-and-publish.yml index 061570a..c8fb67d 100644 --- a/.github/workflows/build-and-publish.yml +++ b/.github/workflows/build-and-publish.yml @@ -30,19 +30,16 @@ jobs: ssh-keyscan -H github.com > /etc/ssh/ssh_known_hosts 2> /dev/null - name: build run: | - cd grpc-proto buf generate sed -i 's/go_eosgrpc/go-eosgrpc' build/*.go - mv build .. - name: push-git run: | git config user.email "cbox@cern.ch" git config user.name "cernbox-bot" - cd grpc-proto commitid=$(git rev-parse HEAD) cd .. git clone git+ssh://git@github.com/cern-eos/go-eosgrpc - cp build/*.go go-eosgrpc/ + cp grpc-proto/build/*.go go-eosgrpc/ cd go-eosgrpc git add . git commit -m 'Synced to https://github.com/cern-eos/grpc-proto/tree/${commitid}'