Skip to content

Commit dc1cbde

Browse files
authored
fix workflow (#414)
Names need to be unique for the new GitHub upload action
1 parent 360e3ee commit dc1cbde

File tree

6 files changed

+14
-8
lines changed

6 files changed

+14
-8
lines changed

.github/workflows/rust.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
- name: Artifact
4949
uses: actions/upload-artifact@v4
5050
with:
51-
name: release
51+
name: release-squawk-linux-x64
5252
path: target/release/squawk-linux-x64
5353

5454
- name: Release
@@ -91,7 +91,7 @@ jobs:
9191
- name: Artifact
9292
uses: actions/upload-artifact@v4
9393
with:
94-
name: release
94+
name: release-squawk-linux-arm64
9595
path: target/release/squawk-linux-arm64
9696

9797
- name: Release
@@ -131,7 +131,7 @@ jobs:
131131
- name: Artifact
132132
uses: actions/upload-artifact@v4
133133
with:
134-
name: release
134+
name: release-squawk-windows-x64.exe
135135
path: target/release/squawk-windows-x64.exe
136136

137137
- name: Release
@@ -179,7 +179,7 @@ jobs:
179179
- name: Artifact
180180
uses: actions/upload-artifact@v4
181181
with:
182-
name: release
182+
name: release-squawk-darwin-${{ matrix.arch }}
183183
path: target/release/squawk-darwin-${{ matrix.arch }}
184184

185185
- name: Release

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## v1.5.5 - 2025-03-20
11+
12+
### Fixed
13+
14+
- Fixed adding-not-nullable-field incorrectly failing to check for nulls (#412). Thanks @schew2381!
15+
1016
## v1.5.4 - 2025-01-14
1117

1218
### Fixed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "squawk"
3-
version = "1.5.4"
3+
version = "1.5.5"
44
authors = ["Steve Dignam <[email protected]>"]
55
edition = "2018"
66
license = "GPL-3.0"

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
{
1919
squawk = final.rustPlatform.buildRustPackage {
2020
pname = "squawk";
21-
version = "1.5.4";
21+
version = "1.5.5";
2222

2323
cargoLock = {
2424
lockFile = ./Cargo.lock;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "squawk-cli",
3-
"version": "1.5.4",
3+
"version": "1.5.5",
44
"description": "linter for PostgreSQL, focused on migrations",
55
"repository": "[email protected]:sbdchd/squawk.git",
66
"author": "Steve Dignam <[email protected]>",

0 commit comments

Comments
 (0)