mirror of https://github.com/pressly/goose.git
Back to development
parent
26295ee173
commit
4e04e08c7b
|
@ -1,30 +0,0 @@
|
|||
name: goreleaser
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- "*"
|
||||
|
||||
jobs:
|
||||
goreleaser:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- name: Set up Go
|
||||
uses: actions/setup-go@v4
|
||||
with:
|
||||
go-version: "stable"
|
||||
- name: Run GoReleaser
|
||||
uses: goreleaser/goreleaser-action@v3
|
||||
with:
|
||||
# either 'goreleaser' (default) or 'goreleaser-pro'
|
||||
distribution: goreleaser
|
||||
version: latest
|
||||
args: release --rm-dist
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
# Your GoReleaser Pro key, if you are using the 'goreleaser-pro' distribution
|
||||
# GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}
|
|
@ -8,14 +8,10 @@
|
|||
|
||||
- Update go.mod and retract all v3.12.X tags. They were accidentally pushed and contain a reference
|
||||
to the wrong Go module.
|
||||
|
||||
## [v3.12.0] - 2023-06-29
|
||||
|
||||
- Fix `up` and `up -allowing-missing` behavior.
|
||||
- Fix empty version in log output.
|
||||
- Add new `context.Context`-aware functions and methods, for both sql and go migrations.
|
||||
- Return error when no migration files found or dir is not a directory.
|
||||
|
||||
[Unreleased]: https://github.com/pressly/goose/compare/v3.13.0...HEAD
|
||||
[v3.13.0]: https://github.com/pressly/goose/compare/v3.12.0...v3.13.0
|
||||
[v3.12.0]: https://github.com/pressly/goose/compare/v3.11.2...v3.12.0
|
||||
[v3.13.0]: https://github.com/pressly/goose/compare/v3.11.2...v3.13.0
|
||||
|
|
|
@ -37,7 +37,7 @@ var (
|
|||
noColor = flags.Bool("no-color", false, "disable color output (NO_COLOR env variable supported)")
|
||||
)
|
||||
var (
|
||||
gooseVersion = "v3.13.0"
|
||||
gooseVersion = "v3.14.0-dev"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
|
Loading…
Reference in New Issue