Skip to content

Commit 9f64aa9

Browse files
committed
"A Docker-based action works in an isolated environment. When a step specifies such an action using uses field, a docker container is spawned using the Dockerfile of the action and *the Docker container takes the responsibility from there onwards.*" idk, let's see if it stays in the docker container for subsequent steps
1 parent 68a30d6 commit 9f64aa9

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,12 @@ jobs:
2222
sudo lsmod
2323
shell: bash
2424

25+
- name: Enter a docker environment
26+
uses: docker://debian:buster-slim
27+
28+
- uses: actions/checkout@v2
29+
2530
- name: Execute script to build linux AppImage
26-
container: debian:buster-slim
2731
run: "build/linux/buildAppImage.sh"
2832
shell: bash
2933

0 commit comments

Comments
 (0)