Skip to content

Commit 0758a32

Browse files
Merge pull request #60 from Githubguy132010/WF-Variable-Fix
Fix workspace variable usage in build workflow
2 parents 90d3d07 + c48c0ef commit 0758a32

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ on:
1515
env:
1616
DOCKER_BUILDKIT: 1
1717
ISO_FILENAME: Arch.iso
18+
WORKSPACE: ${{ github.workspace }}
1819

1920
jobs:
2021
build:
@@ -36,7 +37,7 @@ jobs:
3637
- name: Set up Arch Linux Container
3738
run: |
3839
docker run --privileged --name arch-container -d \
39-
-v ${{ env.WORKSPACE }}:/workdir \
40+
-v ${WORKSPACE}:/workdir \
4041
-v /tmp/pacman-cache:/var/cache/pacman/pkg \
4142
archlinux:latest sleep infinity
4243

0 commit comments

Comments
 (0)