diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4dc5e360b..e0ea6e6b0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -159,7 +159,7 @@ jobs: rm -rf target env: DATABASE_URL: ${{ steps.pg.outputs.connection-uri }} - - name: Download build result + - name: Download build artifact build-${{ matrix.target }} uses: actions/download-artifact@v3 with: name: build-${{ matrix.target }} @@ -308,8 +308,8 @@ jobs: - target: aarch64-apple-darwin os: ubuntu-latest name: martin-Darwin-aarch64.tar.gz - sha: 'true' cross: 'true' + sha: 'true' - target: aarch64-unknown-linux-gnu os: ubuntu-latest name: martin-Linux-aarch64.tar.gz @@ -332,7 +332,8 @@ jobs: steps: - name: Checkout sources uses: actions/checkout@v4 - - uses: actions/download-artifact@v3 + - name: Download build artifact build-${{ matrix.target }} + uses: actions/download-artifact@v3 with: name: build-${{ matrix.target }} path: target/ diff --git a/martin/Cargo.toml b/martin/Cargo.toml index f98e12c8a..b8ca98797 100644 --- a/martin/Cargo.toml +++ b/martin/Cargo.toml @@ -20,12 +20,15 @@ homepage.workspace = true [package.metadata.deb] name = "martin" -maintainer = "Stepan Kuzmin , Yuri Astrakhan , MapLibre contributors" -depends = "$auto" +revision = "" +maintainer = "Yuri Astrakhan , Stepan Kuzmin , MapLibre contributors" maintainer-scripts = "../debian" +depends = "$auto" +features = ["ssl"] assets = [ ["target/release/martin", "/usr/bin/martin", "755"], - ["../README.md","/usr/share/doc/martin/README.md","644"], + ["target/release/mbtiles", "/usr/bin/mbtiles", "755"], + ["../README.md", "/usr/share/doc/martin/README.md", "644"], ["../debian/config.yaml", "/usr/share/doc/martin/config.yaml", "644"], ["../debian/config.yaml", "/usr/local/etc/martin/config.yaml", "644"], ]