Skip to content

Commit

Permalink
chore: release executable configs
Browse files Browse the repository at this point in the history
  • Loading branch information
simonecorsi committed Oct 26, 2023
1 parent 1b400f9 commit 5022b19
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
FROM icr.pepita.io/qa/docker-images/debian:12-slim

RUN curl https://github.com/immobiliare/dats/releases/download/v5.0.1/dats-cli-linux -L -o dats-cli
RUN chmod +x ./dats-cli
4 changes: 2 additions & 2 deletions release.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ const { readdirSync } = require('fs');
const files = readdirSync('.out');

const assets = files.map((f) => {
const [, , distro] = f.split('-');
return {
path: `.out/${f}`,
label: `${distro.replace('.exe', '')} distribution`,
label: f,
};
});

console.log('assets :>> ', assets);
module.exports = {
branches: [
{ name: 'main' },
Expand Down

0 comments on commit 5022b19

Please sign in to comment.