Skip to content

fix: use correct target on release (#4) #3

fix: use correct target on release (#4)

fix: use correct target on release (#4) #3

Workflow file for this run

name: release
permissions: read-all
on:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: false
jobs:
release:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
env:
GO_VERSION: '1.22.4'
NODE_VERSION: '20'
steps:
- name: checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: install go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- name: release
run: make semantic-release-ci