Skip to content

Update Go version, GitHub Actions and vendor #37

Update Go version, GitHub Actions and vendor

Update Go version, GitHub Actions and vendor #37

Workflow file for this run

name: publish
on:
push:
tags:
- '*'
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
with:
fetch-depth: 1
- name: Install Go
uses: actions/setup-go@master
with:
go-version: "1.23.x"
- name: Make all
run: make all
- name: Upload release binaries
uses: alexellis/[email protected]
env:
GITHUB_TOKEN: ${{ github.token }}
with:
asset_paths: '["./bin/k3sup*"]'