mirror of
https://github.com/komodorio/helm-dashboard.git
synced 2026-03-21 18:58:03 +00:00
* Bump up golang to 1.21 and dependencies * Upgrade some deps * Update all dependencie * Remove deprecated
122 lines
3.7 KiB
YAML
122 lines
3.7 KiB
YAML
name: release
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- "v*"
|
|
|
|
env:
|
|
HELM_REP: helm-charts
|
|
GH_OWNER: komodorio
|
|
CHART_DIR: charts/helm-dashboard
|
|
|
|
jobs:
|
|
pre_release:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Get tag name
|
|
id: get_tag_name
|
|
run: echo "TAG_NAME=$(echo ${{ github.ref_name }} | cut -d 'v' -f2)" >> $GITHUB_OUTPUT
|
|
outputs:
|
|
release_tag: ${{ steps.get_tag_name.outputs.TAG_NAME }}
|
|
|
|
release:
|
|
needs: pre_release
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: "1.21"
|
|
- name: git cleanup
|
|
run: git clean -f
|
|
- name: Run GoReleaser
|
|
uses: goreleaser/goreleaser-action@v2
|
|
with:
|
|
version: "1.18.2"
|
|
args: release --rm-dist
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: Test Binary Versions
|
|
run: "dist/helm-dashboard_linux_amd64_v1/helm-dashboard --help"
|
|
|
|
image:
|
|
runs-on: ubuntu-latest
|
|
needs: [ release, pre_release ]
|
|
timeout-minutes: 60
|
|
steps:
|
|
- name: Check out the repo
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Docker meta
|
|
uses: docker/metadata-action@v3
|
|
id: meta
|
|
with:
|
|
images: komodorio/helm-dashboard
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v2
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v2
|
|
|
|
- name: Login to DockerHub
|
|
uses: docker/login-action@v2
|
|
if: github.event_name != 'pull_request'
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USER }}
|
|
password: ${{ secrets.DOCKERHUB_PASS }}
|
|
|
|
- name: Build and push
|
|
uses: docker/build-push-action@v4
|
|
if: github.event_name != 'pull_request'
|
|
with:
|
|
context: .
|
|
push: ${{ github.event_name != 'pull_request' }}
|
|
tags: komodorio/helm-dashboard:${{ needs.pre_release.outputs.release_tag }},komodorio/helm-dashboard:latest
|
|
labels: ${{ steps.meta.outputs.labels }}
|
|
build-args: VER=${{ needs.pre_release.outputs.release_tag }}
|
|
platforms: linux/amd64,linux/arm64
|
|
|
|
publish_chart:
|
|
runs-on: ubuntu-latest
|
|
needs: [ image, pre_release ]
|
|
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Bump versions
|
|
run: |
|
|
git config user.email komi@komodor.io
|
|
git config user.name komodor-bot
|
|
git fetch --tags
|
|
git checkout main
|
|
sh ./ci/bump-versions.sh
|
|
git add charts/helm-dashboard/Chart.yaml
|
|
git add plugin.yaml
|
|
git commit -m "Increment chart versions [skip ci]" || echo "Already up-to-date"
|
|
git push -f || echo "Nothing to push!"
|
|
env:
|
|
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:
|
|
API_TOKEN_GITHUB: ${{ secrets.KOMI_WORKFLOW_TOKEN }}
|
|
with:
|
|
source_folder: "charts/helm-dashboard"
|
|
destination_repo: "komodorio/helm-charts"
|
|
destination_folder: "charts/helm-dashboard"
|
|
user_email: "komi@komodor.io"
|
|
user_name: "komodor-bot"
|
|
destination_branch: "master"
|
|
commit_msg: "feat(OSS helm-dashboard): ${{ github.event.head_commit.message }}" #important!! don't change this commit message unless you change the condition in pipeline.yml on helm-charts repo
|