Skip to content
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
15 changes: 3 additions & 12 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,31 +18,22 @@ jobs:
runs-on: ubuntu-latest
if: github.repository_owner == 'ctrlplanedev'
steps:
- name: Free disk space
uses: jlumbroso/free-disk-space@main
with:
tool-cache: false
android: true
dotnet: true
haskell: true
large-packages: true
docker-images: true
swap-storage: true

- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod

- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
distribution: goreleaser
version: "~> v2"
args: release --clean
args: release --clean --parallelism 2
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ require (
github.com/loft-sh/vcluster v0.25.0
github.com/mitchellh/go-homedir v1.1.0
github.com/moby/term v0.5.2
github.com/netbox-community/go-netbox/v4 v4.3.0
github.com/oapi-codegen/runtime v1.1.1
github.com/spf13/cobra v1.10.1
github.com/spf13/viper v1.19.0
Expand Down Expand Up @@ -196,7 +197,6 @@ require (
github.com/muesli/termenv v0.16.0 // indirect
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect
github.com/netbox-community/go-netbox/v4 v4.3.0 // indirect
github.com/oapi-codegen/oapi-codegen/v2 v2.4.1 // indirect
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/opencontainers/image-spec v1.1.1 // indirect
Expand Down
Loading