mirror of
https://github.com/kubeshark/kubeshark.git
synced 2026-07-07 07:30:12 +00:00
20 lines
443 B
YAML
20 lines
443 B
YAML
name: ci
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'develop'
|
|
- 'main'
|
|
jobs:
|
|
docker:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
name: checkout
|
|
- name: Login to DockerHub
|
|
uses: sendinblue/build-and-push-action@main
|
|
with:
|
|
image-name: 'mizu/${GITHUB_REF##*/}'
|
|
gcp-project-id: 'up9-docker-hub'
|
|
gcp-service-account-key: ${{ secrets.GCR_JSON_KEY }}
|
|
|