Skip to content

Commit

Permalink
DEFECT: Attempt to address CI failure
Browse files Browse the repository at this point in the history
  • Loading branch information
mprimeaux committed Oct 24, 2024
1 parent b31b3d8 commit 4137d79
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 11 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ name: release
on:
workflow_dispatch:
push:
tags: ['v*']
# tags: ['v*']
tags: ['*']

permissions:
contents: write
Expand All @@ -17,7 +18,8 @@ jobs:
env:
flags: ""
steps:
- if: ${{ !startsWith(github.ref, 'refs/tags/v') }}N
# - if: ${{ !startsWith(github.ref, 'refs/tags/v') }}
- if: ${{ !startsWith(github.ref, 'refs/tags/') }}
#- if: ${{ startsWith(github.ref, 'refs/tags/') && contains('0123456789', github.ref | slice(10, 11)) }}
run: echo "flags=--snapshot" >> $GITHUB_ENV

Expand Down
11 changes: 2 additions & 9 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
# This is an example-real .goreleaser.yml file with some sensible defaults.
# Make sure to check the documentation at https://goreleaser.com
before:
hooks:
- go mod tidy

# Ref: https://goreleaser.com/customization/builds/
builds:
# Ref: https://goreleaser.com/errors/no-main/#if-you-are-building-a-library
- skip: true
Expand All @@ -19,6 +14,4 @@ changelog:
- '^test:'

release:
name_template: 'v{{ .Version }}'
footer: |
* * *
name_template: '{{ .Version }}'

0 comments on commit 4137d79

Please sign in to comment.