File tree Expand file tree Collapse file tree 3 files changed +3
-22
lines changed Expand file tree Collapse file tree 3 files changed +3
-22
lines changed Original file line number Diff line number Diff line change @@ -61,19 +61,19 @@ jobs:
6161 DATABASE_URL : postgres://postgres:postgres@localhost:5432/postgres
6262
6363 - name : 🛠️ Run Build
64- run : cargo build -p mini_binary --release --target ${{ matrix.config.target }}
64+ run : cargo build -p pg_cli --release --target ${{ matrix.config.target }}
6565
6666 # windows is a special snowflake to, it saves binaries as .exe
6767 - name : 👦 Name the Binary
6868 if : matrix.config.os == 'windows-latest'
6969 run : |
7070 mkdir dist
71- cp target/${{ matrix.config.target }}/release/mini_binary .exe ./dist/pgcli_${{ matrix.config.target }}
71+ cp target/${{ matrix.config.target }}/release/pg_cli .exe ./dist/pgcli_${{ matrix.config.target }}
7272 - name : 👦 Name the Binary
7373 if : matrix.config.os != 'windows-latest'
7474 run : |
7575 mkdir dist
76- cp target/${{ matrix.config.target }}/release/mini_binary ./dist/pgcli_${{ matrix.config.target }}
76+ cp target/${{ matrix.config.target }}/release/pg_cli ./dist/pgcli_${{ matrix.config.target }}
7777
7878 # It is not possible to return the artifacts from the matrix jobs individually: Matrix outputs overwrite each other.
7979 # A common workaround is to upload and download the resulting artifacts.
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments