Skip to content

Commit d3ba9b7

Browse files
committed
yeah, github didn't like using a list to define the "uses" keys for a given step of a job. Not sure if that's possible. Whatever; let's try manually doing the checkout in our script
1 parent 9e951a9 commit d3ba9b7

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,7 @@ jobs:
2323
shell: bash
2424

2525
- name: Execute script to build linux AppImage
26-
uses:
27-
- actions/checkout@v2
28-
- docker://debian:buster-slim
26+
uses: docker://debian:buster-slim
2927
run: "build/linux/buildAppImage.sh"
3028
shell: bash
3129

build/linux/buildAppImage.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ set -x
2121

2222
PYTHON_PATH='/usr/bin/python3.7'
2323

24+
# CHECKOUT (TODO: maybe remove?)
25+
git clone https://github.com/maltfield/cross-platform-python-gui.git
26+
pushd cross-platform-python-gui
27+
2428
###################
2529
# INSTALL DEPENDS #
2630
###################

0 commit comments

Comments
 (0)