Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Re-enable the release workflow #443

Merged
merged 1 commit into from
Nov 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@ on:
- .goreleaser.yaml
push:
tags: ['v*.*.*']
paths:
- .github/workflows/release.yml
- .goreleaser.yaml
- cli/**

jobs:
bun:
Expand Down Expand Up @@ -75,8 +71,8 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.work
cache-dependency-path: go.work.sum
go-version-file: go.mod
cache-dependency-path: go.sum

- name: GoReleaser Dry-run
if: github.event_name == 'pull_request'
Expand Down
10 changes: 3 additions & 7 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,9 @@ builds:
goarch:
- amd64
- arm64
id: uml2go
dir: cli/uml2go
binary: uml2go
- <<: *cli
id: uml2pcl
dir: cli/uml2pcl
binary: uml2pcl
id: ux
dir: cmd/ux
binary: ux

archives:
- format: tar.gz
Expand Down
Loading