File tree 2 files changed +8
-5
lines changed
2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 14
14
- " rustfmt.toml"
15
15
# or in js packages
16
16
- " packages/**"
17
+ # or in workflows
18
+ - " .github/workflows/**"
17
19
18
20
concurrency :
19
21
group : ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
Original file line number Diff line number Diff line change @@ -58,14 +58,15 @@ jobs:
58
58
DATABASE_URL : postgres://postgres:postgres@localhost:5432/postgres
59
59
60
60
- name : Set version name
61
- run : echo "version=(git cliff --bumped-version)" >> $GITHUB_ENV
61
+ run : echo "version=$ (git cliff --bumped-version)" >> " $GITHUB_ENV"
62
62
63
63
- name : 🛠️ Run Build
64
64
run : cargo build -p pgt_cli --release --target ${{ matrix.config.target }}
65
- # Strip all debug symbols from the resulting binaries
66
- RUSTFLAGS : " -C strip=symbols -C codegen-units=1"
67
- # Inline the version in the CLI binary
68
- PGT_VERSION : ${{ env.version }}
65
+ env :
66
+ # Strip all debug symbols from the resulting binaries
67
+ RUSTFLAGS : " -C strip=symbols -C codegen-units=1"
68
+ # Inline the version in the CLI binary
69
+ PGT_VERSION : ${{ env.version }}
69
70
70
71
71
72
# windows is a special snowflake too, it saves binaries as .exe
You can’t perform that action at this time.
0 commit comments