Skip to content

add CICD

add CICD #23

Workflow file for this run

name: operator-workflow
on:
pull_request:
paths:
- operator/**
- "!operator/webhook/**"
- .github/workflows/operator.yml
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: my-step
run: echo "Hello World!"
# - uses: mathieudutour/[email protected]
# id: tag_version
# with:
# custom_tag: ${{ steps.naming-selector.outputs.TAG_NAME }}
# github_token: ${{ secrets.GITHUB_TOKEN }}
# # avoid v prefix before tag
# tag_prefix: ""
#
# - uses: ncipollo/release-action@v1
# with:
# tag: ${{ steps.tag_version.outputs.new_tag }}
# name: Release ${{ steps.tag_version.outputs.new_tag }}
# body: ${{ steps.tag_version.outputs.changelog }}