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
7 changes: 6 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Release

on:
push:
branches: [main]
tags: ['v*']
release:
types: [published]

Expand Down Expand Up @@ -40,7 +43,9 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
# Use a pinned Go version instead of parsing go.mod to avoid
# failing on unsupported prerelease versions in the module file.
go-version: '1.23'

- name: Download dependencies
run: go mod download
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/binsquare/envmap

go 1.25.4
go 1.23

require (
github.com/1Password/connect-sdk-go v1.5.0
Expand Down
Loading