Bump golang.org/x/term from 0.10.0 to 0.13.0 in /assignment (#12) #42
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: Release | |
on: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.20 | |
- name: Build | |
run: go build -v -o assignments assignment/cmd/main.go | |
- name: Automatic Releases | |
# You may pin to the exact commit or the version. | |
# uses: marvinpinto/action-automatic-releases@919008cf3f741b179569b7a6fb4d8860689ab7f0 | |
uses: marvinpinto/action-automatic-releases@v1.2.1 | |
with: | |
# GitHub secret token | |
repo_token: ${{ secrets.TOKEN }} | |
# Git tag (for automatic releases) | |
# automatic_release_tag: # optional | |
# Should this release be marked as a draft? | |
# draft: # optional | |
# Should this release be marked as a pre-release? | |
# prerelease: # optional, default is true | |
# Release title (for automatic releases) | |
title: Eclass utils | |
# Assets to upload to the release | |
files: assignments |