all repos — hex @ 41ef49fa8dd662452db8c11d9259826fa37ee702

A tiny, minimalist, slightly-esoteric concatenative programming lannguage.

Implementing release workflow.
h3rald h3rald@h3rald.com
Thu, 05 Dec 2024 07:13:29 +0100
commit

41ef49fa8dd662452db8c11d9259826fa37ee702

parent

7b91c68310355f1506f8a1b6ea399192050bd5f8

1 files changed, 12 insertions(+), 0 deletions(-)

jump to
M .github/workflows/release.yml.github/workflows/release.yml

@@ -60,6 +60,18 @@ with:

myToken: ${{ github.token }} exclude_types: "release" view_top: 1 + + # Print the result of the current release + - name: "Print release result" + run: | + echo "id: ${{ steps.current-release.outputs.id }}" + echo "name: ${{ steps.current-release.outputs.name }}" + echo "tag_name: ${{ steps.current-release.outputs.tag_name }}" + echo "created_at: ${{ steps.current-release.outputs.created_at }}" + echo "draft: ${{ steps.current-release.outputs.draft }}" + echo "prerelease: ${{ steps.current-release.outputs.prerelease }}" + echo "url: ${{ steps.current-release.outputs.url }}" + echo "html_url: ${{ steps.current-release.outputs.html_url }}" # Package the resulting Linux/macOS binary - name: Create artifact (Linux, macOS)