Skip to content

CI: hyphens are not supported in package names, leave as generated by… #10

CI: hyphens are not supported in package names, leave as generated by…

CI: hyphens are not supported in package names, leave as generated by… #10

---
name: Build and Publish
on:
push:
branches:
- master
workflow_dispatch:
jobs:
build-and-publish:
name: Build and publish
runs-on: ubuntu-latest
# here we reuse an image that is maintained for the CS3APIs bindings, which contains the necessary tools (buf)
# see https://github.com/cs3org/cs3apis-build/blob/master/Dockerfile
container: cs3org/cs3apis-build:master
steps:
- name: Checkout
uses: actions/checkout@v4
- name: setup-ssh
env:
SSH_KEY: ${{ secrets.ssh_key }}
run: |
mkdir /root/.ssh
python3 -c "import os; file = open('/root/.ssh/id_rsa', 'w'); file.write(os.environ['SSH_KEY']); file.close()"
chmod 400 /root/.ssh/id_rsa
touch /root/.ssh/known_hosts
chmod 400 /root/.ssh/known_hosts
ssh-keyscan -H github.com > /etc/ssh/ssh_known_hosts 2> /dev/null
- name: build-and-push
run: |
buf generate
cd ..
git clone git+ssh://[email protected]/cern-eos/go-eosgrpc
cd go-eosgrpc
git config user.email "[email protected]"
git config user.name "cernbox-bot"
cp ../grpc-proto/build/*.go .
git add .
git commit -m 'Synced to https://github.com/cern-eos/grpc-proto/tree/${{ github.sha }}'
git push origin main
- name: setup-buf
uses: bufbuild/buf-setup-action@v1
- name: push-buf
uses: bufbuild/buf-push-action@v1
with:
buf_token: ${{ secrets.BUF_TOKEN }}
draft: ${{ github.ref_name != 'master'}}