Skip to content

Commit

Permalink
Revert "Update release workflow (#202)"
Browse files Browse the repository at this point in the history
This reverts commit 2df533a.
  • Loading branch information
undera committed Feb 1, 2023
1 parent 0e45e89 commit e6d6ff4
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 82 deletions.
2 changes: 1 addition & 1 deletion .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ github-actions:
- .github/pull_request_template
- .github/workflow/pull-request-labeler.yaml

publish:
release:
- .github/workflows/publish-chart.yaml
- .github/workflows/release.yaml
- .goreleaser.yml
Expand Down
119 changes: 38 additions & 81 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,108 +2,65 @@ name: release

on:
push:
branches: [main]
tags:
- "v*"

env:
HELM_REP: helm-charts
GH_OWNER: komodorio
CHART_DIR: charts/helm-dashboard

jobs:
prepare:
name: prepare
outputs:
version: ${{ steps.version.outputs.version }}
pre_release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v2
- name: Checkout
uses: actions/checkout@v3
with:
go-version: "^1.17"

- name: Calculate next release version
id: version
run: |
echo ${{ secrets.GITHUB_TOKEN }} > token
gh auth login --with-token < token
go install github.com/davidrjonas/semver-cli@latest
commit=$(git log --format="%H" -n 1)
last_pr=$(gh api -X GET search/issues -f q="repo:${{ github.repository }} is:closed is:pr sort:created-desc $commit" --jq '.items[0].number')
if [[ $last_pr = "" ]]; then echo "No pull request found" && exit 0; fi;
bump=$(gh pr view $last_pr --json labels --jq '.labels | map(select(.name | contains("release")) | .name) | .[0]' | sed s/release-//g)
if ! [[ "$bump" =~ ^(major|minor|patch) ]]; then echo "Not a release commit" && exit 0; fi;
echo $bump > bump.txt
cat bump.txt
current=$(gh release list | awk '{print $1}' | awk 'NR==1' | sed s/v//g)
next_version=$(semver-cli inc $bump $current)
echo "next_version is now $next_version"
echo "::set-output name=version::$next_version"
fetch-depth: 0
- name: Get plugin version
id: get_plugin_version
run: echo "PLUGIN_VERSION=$(cat plugin.yaml | grep "version" | cut -d '"' -f 2)" >> $GITHUB_OUTPUT
- name: Get tag name
id: get_tag_name
run: echo "TAG_NAME=$(echo ${{ github.ref_name }} | cut -d 'v' -f2)" >> $GITHUB_OUTPUT
outputs:
plugin_version: ${{ steps.get_plugin_version.outputs.PLUGIN_VERSION }}
release_tag: ${{ steps.get_tag_name.outputs.TAG_NAME }}

release:
name: release
needs: [prepare]
if: needs.prepare.outputs.version
outputs:
tag-name: ${{ steps.commit.outputs.tag-name }}
needs: pre_release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Plugin version/Tag name Check
if: needs.pre_release.outputs.release_tag != needs.pre_release.outputs.plugin_version
uses: actions/github-script@v3
with:
script: |
core.setFailed('Plugin version and tag name are not equivalent!')
- name: Checkout
uses: actions/checkout@v3
with:
persist-credentials: false
fetch-depth: 0

- name: Update plugin.yaml
uses: fjogeleit/yaml-update-action@main
- name: Set up Go
uses: actions/setup-go@v3
with:
valueFile: plugin.yaml
propertyPath: version
value: ${{ needs.prepare.outputs.version }}
commitChange: false

- name: Commit files
id: commit
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git add -A
git commit -m "bumping release v${{ needs.prepare.outputs.version }} [skip ci]"
tag_name=v${{ needs.prepare.outputs.version }}
git tag $tag_name
echo "::set-output name=tag-name::$tag_name"
- name: Push changes
uses: ad-m/github-push-action@v0.6.0
go-version: 1.18
- name: git cleanup
run: git clean -f
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
github_token: ${{ secrets.ADMIN_KOMI_GITHUB_TOKEN }}
branch: ${{ github.ref }}
tags: true

- name: Changelog
uses: Bullrich/generate-release-changelog@master
id: changelog
env:
REPO: ${{ github.repository }}

- name: Create GitHub Release
uses: actions/create-release@v1
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.commit.outputs.tag-name }}
release_name: ${{ steps.commit.outputs.tag-name }}
body: ${{ steps.changelog.outputs.changelog }}
draft: false
prerelease: false

- name: Test Binary Versions
run: "dist/helm-dashboard_linux_amd64_v1/helm-dashboard --help"

image:
runs-on: ubuntu-latest
needs: [release, prepare]
needs: [release, pre_release]
timeout-minutes: 60
steps:
- name: Check out the repo
Expand All @@ -128,13 +85,13 @@ jobs:
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: komodorio/helm-dashboard:${{ needs.prepare.outputs.version }},komodorio/helm-dashboard:latest
tags: komodorio/helm-dashboard:${{ needs.pre_release.outputs.release_tag }},komodorio/helm-dashboard:latest
labels: ${{ steps.meta.outputs.labels }}
build-args: VER=${{ needs.prepare.outputs.version }}
build-args: VER=${{ needs.pre_release.outputs.release_tag }}

publish_chart:
runs-on: ubuntu-latest
needs: [release, image, prepare]
needs: [image, pre_release]
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'
steps:
- name: Checkout
Expand All @@ -152,7 +109,7 @@ jobs:
git commit -m "Increment chart versions [skip ci]" || echo "Already up-to-date"
git push -f || echo "Nothing to push!"
env:
APP_VERSION: ${{ needs.prepare.outputs.version }}
APP_VERSION: ${{ needs.pre_release.outputs.release_tag }}
- name: Push folder to helm-charts repository
uses: crykn/copy_folder_to_another_repo_action@v1.0.6
env:
Expand Down

0 comments on commit e6d6ff4

Please sign in to comment.