fix vela conflict #380
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- release/* | |
- hotfix/* | |
- master | |
tags: | |
- v* | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
env: | |
RELEASE_VERSION: v0.2.0 | |
DOCKER_IMAGE: wosai/elastic-env-operator | |
steps: | |
- name: Set up Go 1.x | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ^1.14 | |
id: go | |
- name: Set up Kubebuilder | |
if: ${{ github.event_name == 'pull_request' }} | |
run: | | |
os=$(go env GOOS) | |
arch=$(go env GOARCH) | |
curl -L https://go.kubebuilder.io/dl/2.3.1/${os}/${arch} | tar -xz -C /tmp/ | |
sudo mv /tmp/kubebuilder_2.3.1_${os}_${arch} /usr/local/kubebuilder | |
export PATH=$PATH:/usr/local/kubebuilder/bin | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
- name: Test | |
run: | | |
go test -race -covermode=atomic -v -coverpkg github.com/wosai/elastic-env-operator/domain/handler ./... | |
if: ${{ github.event_name == 'pull_request' }} | |
- name: Test Coverage Report | |
run: bash <(curl -s https://codecov.io/bash) | |
- name: Build and Release Docker Image | |
uses: docker/build-push-action@v1 | |
with: | |
username: ${{ secrets.DOCKERHUB_ORG_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_ORG_ACCESS_TOKEN }} | |
repository: wosai/elastic-env-operator | |
tag_with_ref: true |