Temporarly disable codegen job #18
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: "pre-release" | |
on: | |
push: | |
branches: | |
- "master" | |
jobs: | |
pre-release: | |
name: "Pre Release" | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.18 | |
- name: "Test" | |
run: make test | |
- name: "Test code gen" | |
run: make check-generated | |
- name: "Build" | |
run: make all | |
- uses: "marvinpinto/action-automatic-releases@latest" | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
automatic_release_tag: "latest" | |
prerelease: true | |
title: "Dev build" | |
files: | | |
LICENSE | |
build/_output/bin/kubeserial | |
build/_output/bin/device-monitor | |
build/_output/bin/injector-webhook | |
coverage.txt |