Skip to content

Commit

Permalink
Updated release generation logic (#455)
Browse files Browse the repository at this point in the history
  • Loading branch information
ellistarn authored Jun 15, 2021
1 parent 26ef687 commit 7d5acda
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ jobs:
uses: actions/setup-go@v2
with:
go-version: 1.16.3

- name: CI - Verifications and Tests
run: |
make toolchain
make toolchain
echo "/usr/local/kubebuilder/bin" >> $GITHUB_PATH
make ci
env:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Upload Code Coverage
Expand Down
11 changes: 4 additions & 7 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,11 @@ on:
push:
tags: ['v*']
jobs:
build:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/create-release@v1
id: create_release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: "marvinpinto/action-automatic-releases@latest"
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false

0 comments on commit 7d5acda

Please sign in to comment.