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
42 changes: 21 additions & 21 deletions .github/workflows/release-go-cli.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,28 +9,28 @@ jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v2

- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.23
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.23.0

- name: Build go-cli binary releases
run: cd ./cli && ./buildreleases.sh
- name: Build go-cli binary releases
run: cd ./cli && ./buildreleases.sh

- name: Create release
uses: ncipollo/release-action@v1
with:
allowUpdates: true
artifacts: ./cli/bin/instant-linux,./cli/bin/instant-macos,./cli/bin/instant-win.exe
tag: latest
commit: main
- name: Create release
uses: ncipollo/release-action@v1
with:
allowUpdates: true
artifacts: ./cli/bin/instant-linux,./cli/bin/instant-macos,./cli/bin/instant-win.exe
tag: latest
commit: main

- name: Release binaries to referenced tag
uses: softprops/action-gh-release@v1
with:
files: |
./cli/bin/instant-linux
./cli/bin/instant-macos
./cli/bin/instant-win.exe
- name: Release binaries to referenced tag
uses: softprops/action-gh-release@v1
with:
files: |
./cli/bin/instant-linux
./cli/bin/instant-macos
./cli/bin/instant-win.exe
1 change: 0 additions & 1 deletion cli/src/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ module cli

go 1.23.0


require (
github.com/cucumber/godog v0.12.5
github.com/docker/cli v26.1.3+incompatible
Expand Down