-
Hi guys, I'm trying to release a This is the library: https://github.com/bygui86/multi-profile This is the project_name: multi-profile
builds:
- skip: true
archives:
- replacements:
linux: Linux
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:' I tried this config as well, but still fails: project_name: multi-profile
builds:
- env:
- CGO_ENABLED=0
goos:
- linux
skip: true
archives:
- replacements:
linux: Linux
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:' This is the name: release
on:
push:
tags:
- v*
env:
GO111MODULE: "on"
jobs:
release:
name: release
runs-on: ubuntu-latest
steps:
- name: Setup
uses: actions/setup-go@v2
with:
go-version: 1.15.x
- name: Checkout
uses: actions/checkout@v2
with:
# WARN: 'fetch-depth: 0' is required for the changelog to work correctly
fetch-depth: 0
- name: Build
run: go build ./...
- name: Test
run: go test -count=3 -race ./...
- name: Release
uses: goreleaser/goreleaser-action@v2
with:
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} This are logs from github actions:
Every comments, tips or help are more than welcome! |
Beta Was this translation helpful? Give feedback.
Answered by
caarlos0
Oct 11, 2020
Replies: 1 comment 8 replies
-
I think the config should be only: project_name: multi-profile
builds:
- skip: true
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:' |
Beta Was this translation helpful? Give feedback.
8 replies
Answer selected by
caarlos0
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think the config should be only: