Skip to content

fix: restore correct template paths for starter apply #15

fix: restore correct template paths for starter apply

fix: restore correct template paths for starter apply #15

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
workflow_dispatch:
permissions:
contents: write
jobs:
release:
name: Create Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23'
check-latest: true
- name: Lint
run: make lint
- name: Test
run: make test
- name: Build Binaries
run: make dist
env:
VERSION: ${{ github.ref_name }}
- name: Release
uses: softprops/action-gh-release@v2
with:
files: dist/*
generate_release_notes: true