diff --git a/.drone.jsonnet b/.drone.jsonnet index b8511be..f6b8553 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -65,39 +65,39 @@ local release(arch) = { 'pnpm i', 'pnpm build', ], - }, - { - name: 'package', - image: 'node:lts', - commands: ( - if arch == 'arm64' then - [ - 'wget "https://github.com/ProcursusTeam/ldid/releases/download/v2.1.5-procursus2/ldid_linux_aarch64" -O /usr/local/bin/ldid', - 'chmod +x /usr/local/bin/ldid', - ] else [] - ) + [ - 'npm run package -- -t latest-linux-%s,latest-alpine-%s,latest-macos-%s,latest-win-%s -o dist/bin/feditoken-%s' % [arch, arch, arch, arch, arch], - 'xz -9 dist/bin/*', - ], - depends_on: [ - 'build', - ], - }, - { - name: 'release', - image: 'plugins/gitea-release', - settings: { - api_key: { - from_secret: 'release_api_key', - }, - base_url: 'https://git.froth.zone', - files: [ - 'dist/bin/*', - ], - }, - depends_on: [ - 'package', - ], + // }, + // { + // name: 'package', + // image: 'node:lts', + // commands: ( + // if arch == 'arm64' then + // [ + // 'wget "https://github.com/ProcursusTeam/ldid/releases/download/v2.1.5-procursus2/ldid_linux_aarch64" -O /usr/local/bin/ldid', + // 'chmod +x /usr/local/bin/ldid', + // ] else [] + // ) + [ + // 'npm run package -- -t latest-linux-%s,latest-alpine-%s,latest-macos-%s,latest-win-%s -o dist/bin/feditoken-%s' % [arch, arch, arch, arch, arch], + // 'xz -9 dist/bin/*', + // ], + // depends_on: [ + // 'build', + // ], + // }, + // { + // name: 'release', + // image: 'plugins/gitea-release', + // settings: { + // api_key: { + // from_secret: 'release_api_key', + // }, + // base_url: 'https://git.froth.zone', + // files: [ + // 'dist/bin/*', + // ], + // }, + // depends_on: [ + // 'package', + // ], } + (if arch == 'amd64' then { @@ -122,5 +122,5 @@ local release(arch) = { pipe('arm64'), release('amd64'), - release('arm64'), + // release('arm64'), ]