Skip to content

Commit

Permalink
Script fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
MrAwesome committed Nov 27, 2024
1 parent 6e04de5 commit 8e9a786
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
1 change: 1 addition & 0 deletions TODO
Original file line number Diff line number Diff line change
Expand Up @@ -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?)
Expand Down
2 changes: 1 addition & 1 deletion gui/godot/export_presets.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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=""
Expand Down
2 changes: 1 addition & 1 deletion misc/act-docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -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

# {{{
Expand Down
6 changes: 6 additions & 0 deletions scripts/push_local_docker_image.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/bash

set -euxo pipefail

docker tag decktricks-act:latest gleesus/decktricks:latest
docker push gleesus/decktricks:latest

0 comments on commit 8e9a786

Please sign in to comment.