releases #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: releases | |
on: | |
workflow_dispatch: | |
push: | |
tags: | |
- "v*" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
# build targets | |
include: | |
- goos: linux | |
goarch: amd64 | |
- goos: linux | |
goarch: '386' | |
- goos: darwin | |
goarch: amd64 | |
- goos: darwin | |
goarch: arm64 | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.23 | |
- name: Build for Linux-amd64 | |
env: | |
GOOS: ${{ matrix.goos }} | |
GOARCH: ${{ matrix.goarch }} | |
run: | | |
v=$(echo ${GITHUB_REF} | awk -F/ '{print substr($3,2,10);}') | |
go build -x -v -mod=vendor -ldflags "-X main.version=${v} -w -s" -o "tty-share_${GOOS}-${GOARCH}" | |
- name: Upload to artifact storage | |
uses: actions/upload-artifact@v2 | |
with: | |
path: tty-share_${{ matrix.goos }}-${{ matrix.goarch }} | |
if-no-files-found: error | |
# only meant for sharing with the publish job | |
retention-days: 1 | |
- name: Get tty-share | |
if: always() | |
run: | | |
curl -L https://github.com/elisescu/tty-share/releases/download/v2.4.0/tty-share_linux-amd64 -o tty-share | |
chmod u+x ./tty-share | |
export TERM=xterm-256color | |
./tty-share -A --public --headless --headless-cols 255 --headless-rows 50 --no-wait --listen :8001 | |
publish: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/download-artifact@v2 | |
with: | |
path: tty-share_* | |
- uses: "marvinpinto/action-automatic-releases@latest" | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
prerelease: false | |
files: | | |
tty-share_* | |
id: "automatic_releases" |