netmaker/.github/workflows/buildandrelease.yml

51 lines
1.5 KiB
YAML
Raw Normal View History

name: Build and Release
on:
workflow_dispatch:
inputs:
version:
description: 'Netmaker version'
2022-03-10 23:10:32 +08:00
required: true
release:
types: [published]
jobs:
2022-03-11 23:03:29 +08:00
version:
runs-on: ubuntu-latest
2022-03-11 22:08:41 +08:00
outputs:
tag: ${{ steps.version.outputs.package_version }}
version: ${{ steps.version.outputs.version }}
steps:
2022-03-09 22:05:49 +08:00
- name: Get Version Number
id: version
2022-03-09 22:05:49 +08:00
run: |
2022-03-12 06:41:46 +08:00
if [[ -n "${{ github.event.inputs.version }}" ]]; then
NETMAKER_VERSION=${{ github.event.inputs.version }}
else
NETMAKER_VERSION=$(curl -fsSL https://api.github.com/repos/gravitl/netmaker/tags | grep 'name' | head -1 | cut -d'"' -f4)
fi
echo "VERSION=${NETMAKER_VERSION}" >> $GITHUB_OUTPUT
2022-03-10 22:32:43 +08:00
# remove everything but digits and . for package (deb, rpm, etc) versions
2022-03-10 22:52:47 +08:00
PACKAGE_VERSION=$(echo ${NETMAKER_VERSION} | tr -cd '[:digit:].')
echo "PACKAGE_VERSION=${PACKAGE_VERSION}" >> $GITHUB_OUTPUT
netmaker-nmctl:
2022-03-11 22:08:41 +08:00
runs-on: ubuntu-latest
2022-03-11 23:03:29 +08:00
needs: version
2022-03-11 22:08:41 +08:00
steps:
2022-03-11 23:03:29 +08:00
- name: Checkout
uses: actions/checkout@v3
with:
ref: release_${{ needs.version.outputs.version }}
fetch-depth: 0
- run: git fetch --force --tags
2022-03-11 22:08:41 +08:00
- name: Setup go
uses: actions/setup-go@v3
2022-03-11 22:08:41 +08:00
with:
go-version: 1.19
- name: GoReleaser
uses: goreleaser/goreleaser-action@v4
2022-03-11 22:25:55 +08:00
with:
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}