Skip to content

Commit

Permalink
feat(release): release v1.0.31
Browse files Browse the repository at this point in the history
  • Loading branch information
JPBM135 committed Jan 18, 2024
1 parent 98df718 commit 1342689
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 3 deletions.
22 changes: 22 additions & 0 deletions dist/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -19929,6 +19929,7 @@ var POLYFILLS = {
"dpkg-dev": { default: true, needs: [], aptPackage: "dpkg-dev" },
"fonts-noto-color-emoji": { default: false, needs: [], aptPackage: "fonts-noto-color-emoji" },
"g++": { default: true, needs: [], aptPackage: "g++" },
"gnome-terminal": { default: true, needs: [], aptPackage: "gnome-terminal" },
"iputils-ping": { default: false, needs: [], aptPackage: "iputils-ping" },
"libffi-dev": { default: true, needs: [], aptPackage: "libffi-dev" },
"libgbm-dev": { default: true, needs: [], aptPackage: "libgbm-dev" },
Expand Down Expand Up @@ -20026,6 +20027,27 @@ var POLYFILLS = {
needs: ["curl"],
path: "$HOME/.yarn/bin:$HOME/.config/yarn/global/node_modules/.bin:$PATH",
command: "curl -o- -L https://yarnpkg.com/install.sh | bash || true"
},
docker: {
default: true,
needs: ["gnome-terminal", "curl", "gnupg", "ca-certificates"],
command: [
"sudo install -m 0755 -d /etc/apt/keyrings",
"curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg",
"sudo chmod a+r /etc/apt/keyrings/docker.gpg",
'echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu $(. /etc/os-release && echo "$VERSION_CODENAME") stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null',
"sudo apt-get update",
"sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin"
].join(" && ")
},
"aws-cli": {
default: true,
needs: [],
command: [
'curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"',
"unzip awscliv2.zip",
"sudo ./aws/install"
].join(" && ")
}
};

Expand Down
4 changes: 2 additions & 2 deletions dist/index.mjs.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jpbm135/self-hosted-action-polyfill",
"version": "1.0.30",
"version": "1.0.31",
"description": "Polyfills for self hosted actions",
"main": "dist/index.mjs",
"scripts": {
Expand Down

0 comments on commit 1342689

Please sign in to comment.