Skip to content

Commit

Permalink
ci: adds a build process
Browse files Browse the repository at this point in the history
  • Loading branch information
faiq committed Oct 11, 2023
1 parent 8fbe8d2 commit 3bbff88
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
on:
workflow_dispatch:
push:
brach:
- 'faiq/add-build'

name: Release Cloud Provider GCP
jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: setup-bazelisk
uses: ./
with:
bazelisk-version: 1.7.4

- name: publish container images
run: |
IMAGE_REGISTRY=ghcr.io IMAGE_REPO=mesosphere/cloud-controller-manager-gcp IMAGE_TAG=${{ github.event.inputs.tag }} bazel run //cmd/cloud-controller-manager:publish

0 comments on commit 3bbff88

Please sign in to comment.