diff --git a/TODO b/TODO index affa944..3b0ad01 100644 --- a/TODO +++ b/TODO @@ -8,6 +8,7 @@ Prerequisites: [] flatpak [] systemctl +[] curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --help [] cargo update [] implement general updates! [] make cargo test in base repo run tests in GUI as well (and vice-versa?) diff --git a/gui/godot/export_presets.cfg b/gui/godot/export_presets.cfg index 4d854f0..48753cc 100644 --- a/gui/godot/export_presets.cfg +++ b/gui/godot/export_presets.cfg @@ -9,7 +9,7 @@ custom_features="" export_filter="all_resources" include_filter="" exclude_filter="" -export_path="build/Decktricks.x86_64" +export_path="build/decktricks-gui" patches=PackedStringArray() encryption_include_filters="" encryption_exclude_filters="" diff --git a/misc/act-docker/Dockerfile b/misc/act-docker/Dockerfile index e376bed..0f497d8 100644 --- a/misc/act-docker/Dockerfile +++ b/misc/act-docker/Dockerfile @@ -1,7 +1,7 @@ FROM archlinux:base-devel AS base ENV CI=true RUN pacman -Syu --noconfirm git flatpak fontconfig p7zip -RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y +RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable RUN ln -sf /root/.cargo/bin/cargo /usr/bin/cargo # {{{ diff --git a/scripts/push_local_docker_image.sh b/scripts/push_local_docker_image.sh new file mode 100644 index 0000000..b94859b --- /dev/null +++ b/scripts/push_local_docker_image.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +set -euxo pipefail + +docker tag decktricks-act:latest gleesus/decktricks:latest +docker push gleesus/decktricks:latest