|
17 | 17 |
|
18 | 18 | env:
|
19 | 19 | GHJK_VERSION: "f380522"
|
20 |
| - DENO_VERSION: "1.40.1" |
| 20 | + DENO_VERSION: "1.41.0" |
21 | 21 | REGISTRY_IMAGE: ghcr.io/${{ github.repository_owner }}/typegate
|
22 | 22 |
|
23 | 23 | jobs:
|
@@ -120,33 +120,33 @@ jobs:
|
120 | 120 | # we cd next to the file so that the its parent dirs
|
121 | 121 | # aren't present in the tar
|
122 | 122 | cd target/${{ matrix.target }}/release/
|
123 |
| - tar czvf ../../../meta-cli-${{ steps.latest-tag.outputs.tag }}-${{ matrix.target }}.tar.gz "meta${{ matrix.suffix }}" |
| 123 | + tar czvf ../../../meta-cli-thin-${{ steps.latest-tag.outputs.tag }}-${{ matrix.target }}.tar.gz "meta${{ matrix.suffix }}" |
124 | 124 | cd ../../../
|
125 | 125 | - if: ${{ matrix.target != 'aarch64-unknown-linux-gnu' }}
|
126 | 126 | shell: bash
|
127 | 127 | run: |
|
128 | 128 | cargo build --release --locked --package meta-cli --target ${{ matrix.target }} --features typegate -v
|
129 | 129 | cd target/${{ matrix.target }}/release/
|
130 |
| - tar czvf ../../../meta-cli-full-${{ steps.latest-tag.outputs.tag }}-${{ matrix.target }}.tar.gz "meta${{ matrix.suffix }}" |
| 130 | + tar czvf ../../../meta-cli-${{ steps.latest-tag.outputs.tag }}-${{ matrix.target }}.tar.gz "meta${{ matrix.suffix }}" |
131 | 131 | cd ../../../
|
132 | 132 |
|
133 | 133 | cargo build --release --locked --package meta-cli --target ${{ matrix.target }}
|
134 | 134 | cd target/${{ matrix.target }}/release/
|
135 |
| - tar czvf ../../../meta-cli-${{ steps.latest-tag.outputs.tag }}-${{ matrix.target }}.tar.gz "meta${{ matrix.suffix }}" |
| 135 | + tar czvf ../../../meta-cli-thin-${{ steps.latest-tag.outputs.tag }}-${{ matrix.target }}.tar.gz "meta${{ matrix.suffix }}" |
136 | 136 | cd ../../../
|
137 |
| - # full meta-cli is not avail for arm64 linux (waiting on arm64 linux machines for Gh CI) |
| 137 | + # fat meta-cli is not avail for arm64 linux (waiting on arm64 linux machines for Gh CI) |
138 | 138 | - if: ${{ matrix.target != 'aarch64-unknown-linux-gnu' }}
|
139 | 139 | uses: svenstaro/upload-release-action@v2
|
140 | 140 | with:
|
141 | 141 | tag: ${{ steps.latest-tag.outputs.tag }}
|
142 |
| - file: "meta-cli-full-${{ steps.latest-tag.outputs.tag }}-${{ matrix.target }}.tar.gz" |
143 |
| - asset_name: "meta-cli-full-${{ steps.latest-tag.outputs.tag }}-${{ matrix.target }}.tar.gz" |
| 142 | + file: "meta-cli-${{ steps.latest-tag.outputs.tag }}-${{ matrix.target }}.tar.gz" |
| 143 | + asset_name: "meta-cli-${{ steps.latest-tag.outputs.tag }}-${{ matrix.target }}.tar.gz" |
144 | 144 | overwrite: ${{ inputs.ovewriteArtifacts }}
|
145 | 145 | - uses: svenstaro/upload-release-action@v2
|
146 | 146 | with:
|
147 | 147 | tag: ${{ steps.latest-tag.outputs.tag }}
|
148 |
| - file: "meta-cli-${{ steps.latest-tag.outputs.tag }}-${{ matrix.target }}.tar.gz" |
149 |
| - asset_name: "meta-cli-${{ steps.latest-tag.outputs.tag }}-${{ matrix.target }}.tar.gz" |
| 148 | + file: "meta-cli-thin-${{ steps.latest-tag.outputs.tag }}-${{ matrix.target }}.tar.gz" |
| 149 | + asset_name: "meta-cli-thin-${{ steps.latest-tag.outputs.tag }}-${{ matrix.target }}.tar.gz" |
150 | 150 | overwrite: ${{ inputs.ovewriteArtifacts }}
|
151 | 151 |
|
152 | 152 | typegraph:
|
|
0 commit comments