We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18dc611 commit 00317e2Copy full SHA for 00317e2
.github/actions/push-files/Dockerfile
@@ -3,10 +3,10 @@ FROM ubuntu:18.04
3
4
# Install GitHub CLI
5
RUN apt-get update && \
6
- apt-get install -y --no-install-recommends git
+ apt-get install -y --no-install-recommends git wget
7
RUN mkdir /ghcli && \
8
cd /ghcli && \
9
- wget https://github.com/cli/cli/releases/download/v1.0.0/gh_1.0.0_linux_386.tar.gz -O ghcli.tar.gz && \
+ wget https://github.com/cli/cli/releases/download/v1.0.0/gh_1.0.0_linux_386.tar.gz -O ghcli.tar.gz --no-check-certificate && \
10
tar --strip-components=1 -xf ghcli.tar.gz
11
12
# Copies your code file from your action repository to the filesystem path `/` of the container
0 commit comments