Rich Enhanced Shell History - Contextual shell history for zsh and bash
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
resh/.github/workflows/release.yaml

50 lines
1.4 KiB

name: release
on:
create:
tags:
- v*
jobs:
extras:
runs-on: ubuntu-latest
steps:
-
name: Checkout submodules
uses: textbook/git-checkout-submodule-action@2.0.0
-
name: Archive using tar
run: tar -czvf resh_extra_files.tar.gz *
-
name: GH Release
uses: softprops/action-gh-release@v0.1.0
with:
# Note-worthy description of changes in release
#body: # optional, default is empty
# Path to load note-worthy description of changes in release from
#body-path: # optional, default is empty
# Gives the release a custom name
#name: # optional, default is Name of tag
# Creates a draft release
draft: true # optional, default is false
# Comma-delimited list of path globs for asset files to upload
files: resh_extra_files.tar.gz # optional, default is empty
goreleaser:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v1
-
name: Set up Go
uses: actions/setup-go@v1
with:
go-version: '1.12'
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v1
with:
version: latest
args: release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}