mirror of
https://github.com/kubeshark/kubeshark.git
synced 2026-01-25 22:54:39 +00:00
* new makefiles, build automation * Update main.yml * add git branch to the bucket path * Update main.yml * no message * no message * fix yaml * fix naming * run only on main and develop Co-authored-by: Alex Haiut <alex@up9.com>
20 lines
450 B
YAML
20 lines
450 B
YAML
name: public-cli
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'develop'
|
|
- 'main'
|
|
jobs:
|
|
docker:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Set up Cloud SDK
|
|
uses: google-github-actions/setup-gcloud@master
|
|
with:
|
|
service_account_key: ${{ secrets.GCR_JSON_KEY }}
|
|
export_default_credentials: true
|
|
- name: Build and Push CLI
|
|
run: make push-cli
|