Skip to content

Bump golang.org/x/term from 0.23.0 to 0.26.0 #276

Bump golang.org/x/term from 0.23.0 to 0.26.0

Bump golang.org/x/term from 0.23.0 to 0.26.0 #276

Workflow file for this run

name: CI
on:
push:
tags:
- "*"
branches:
- master
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
# Build
- uses: actions/checkout@v4
- name: Build all
run: make build-all
# Upload artifacts
- name: Upload typioca-win-amd64
uses: actions/upload-artifact@v4
with:
name: typioca-win-amd64
path: execs/typioca-win-amd64.exe
- name: Upload typioca-win-arm64
uses: actions/upload-artifact@v4
with:
name: typioca-win-arm64
path: execs/typioca-win-arm64.exe
- name: Upload typioca-linux-amd64
uses: actions/upload-artifact@v4
with:
name: typioca-linux-amd64
path: execs/typioca-linux-amd64
- name: Upload typioca-mac-amd64
uses: actions/upload-artifact@v4
with:
name: typioca-mac-amd64
path: execs/typioca-mac-amd64
- name: Upload typioca-mac-arm64
uses: actions/upload-artifact@v4
with:
name: typioca-mac-arm64
path: execs/typioca-mac-arm64
release:
needs: build
runs-on: ubuntu-latest
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/download-artifact@v4
with:
path: execs
- name: Release
uses: softprops/action-gh-release@v2
with:
name: typioca ${{ github.ref_name }}
files: execs/**/*
winget:
needs: release
runs-on: ubuntu-latest
steps:
- uses: vedantmgoyal2009/winget-releaser@v2
with:
identifier: bloznelis.typioca
version: ${{ github.ref_name }}
token: ${{ secrets.PUBLIC_REPO_ACCESS }}