Skip to content

Add new flags and dependencies for enhanced directory structure printing #4

Add new flags and dependencies for enhanced directory structure printing

Add new flags and dependencies for enhanced directory structure printing #4

Workflow file for this run

name: Release
on:
push:
tags:
- "v*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.23.5"
- name: Run build script
run: ./scripts/build.sh
- name: Upload binaries
uses: actions/upload-artifact@v3
with:
name: binaries
path: bin/
- name: Create GitHub Release
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
with:
files: |
bin/printlayout-linux-amd64
bin/printlayout-darwin-amd64
bin/printlayout-windows-amd64.exe