You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 24, 2026. It is now read-only.
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
RUN curl -fsSL https://github.com/pyinstaller/pyinstaller/releases/download/v$PYINSTALLER_VER/PyInstaller-$PYINSTALLER_VER.tar.gz | tar xvz >/dev/null \
25
+
&& cd PyInstaller*/bootloader \
26
+
&& python3 ./waf all
27
+
28
+
# Clone docker-compose
29
+
WORKDIR /build/dockercompose
30
+
RUN curl -fsSL https://github.com/docker/compose/archive/$DOCKER_COMPOSE_VER.zip > $DOCKER_COMPOSE_VER.zip \
31
+
&& unzip $DOCKER_COMPOSE_VER.zip
32
+
33
+
# Run the build steps (taken from https://github.com/docker/compose/blob/master/script/build/linux-entrypoint)
34
+
RUN cd compose-$DOCKER_COMPOSE_VER && mkdir ./dist \
0 commit comments