Skip to content

Create plugin release #5

Create plugin release

Create plugin release #5

Workflow file for this run

name: Create plugin release
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
workflow_dispatch:
inputs:
is_draft_release:
description: "Whether a draft release should be created, instead of public one"
required: false
default: false
is_dry_run:
description: "Whether to create release"
required: false
default: false
golang_version:
description: "Golang version to use for building"
required: false
default: "1.22"
tag_name:
description: "Tag name to use for release"
required: true
env:
GOLANG_VERSION: ${{ github.event.inputs.golang_version || '1.22' }}
PLUGIN_NAME: "honeycomb-metric-plugin"
TAG_NAME: ${{ github.event.inputs.tag_name || github.event.ref_name }}
jobs:
release-creation:
name: Automatic release creation
runs-on: ubuntu-latest
env:
# Whether to create release
IS_DRY_RUN: false
# Whether a draft release should be created, instead of public one
IS_DRAFT_RELEASE: false
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}
- name: Fetch tags
run: git fetch --tags --force
- name: Get current tag annotation
id: tag-data
uses: ericcornelissen/git-tag-annotation-action@v2
with:
tag: ${{ env.TAG_NAME }}
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ env.TAG_NAME }}
release_name: Release ${{ env.TAG_NAME }}
body: ${{ steps.tag-data.outputs.git-tag-annotation }}
draft: ${{ env.IS_DRAFT_RELEASE }}
prerelease: false
- name: Set up Golang
uses: actions/setup-go@v4
with:
go-version: ${{ env.GOLANG_VERSION }}
- name: Build binaries
run: |
make release
- name: Upload linux/amd64 binary to release assets
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./dist/${{ env.PLUGIN_NAME }}-linux-amd64
asset_name: ${{ env.PLUGIN_NAME }}-linux-amd64
asset_content_type: application/octet-stream
if: ${{ env.IS_DRY_RUN != 'true' }}
- name: Upload linux/arm64 binary to release assets
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./dist/${{ env.PLUGIN_NAME }}-linux-arm64
asset_name: ${{ env.PLUGIN_NAME }}-linux-arm64
asset_content_type: application/octet-stream
if: ${{ env.IS_DRY_RUN != 'true' }}
- name: Upload darwin/amd64 binary to release assets
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./dist/${{ env.PLUGIN_NAME }}-darwin-amd64
asset_name: ${{ env.PLUGIN_NAME }}-darwin-amd64
asset_content_type: application/octet-stream
if: ${{ env.IS_DRY_RUN != 'true' }}
- name: Upload darwin/arm64 binary to release assets
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./dist/${{ env.PLUGIN_NAME }}-darwin-arm64
asset_name: ${{ env.PLUGIN_NAME }}
asset_content_type: application/octet-stream
if: ${{ env.IS_DRY_RUN != 'true' }}