remove content filtering
Release binary for cl-cli / build-and-release (push) Failing after 1m44s Details

This commit is contained in:
Julien Fastré 2024-01-08 22:48:16 +01:00
parent 4abba281c8
commit 009c009dc7
Signed by: julienfastre
GPG Key ID: BDE2190974723FCB
1 changed files with 7 additions and 2 deletions

View File

@ -3,7 +3,7 @@ name: Release binary for cl-cli
on:
push:
tags:
- release/**
- v**
jobs:
build-and-release:
@ -19,8 +19,13 @@ jobs:
id: read_release
shell: bash
run: |
r=$(cat .changes/v0.1.0.md) # <--- Read release.md (Provide correct path as per your repo)
r=$(cat .changes/${{ github.ref_name }}.md) # <--- Read release.md (Provide correct path as per your repo)
echo "RELEASE_BODY=$r" >> $GITHUB_OUTPUT # <--- Set environment variable
- name: debug
shell: bash
env:
OUTPUT1: ${{ steps.read_release.outputs.RELEASE_BODY }}
run: echo "$OUTPUT1"
- name: Setup go for using go gitea actions
uses: https://github.com/actions/setup-go@v4
with: