Fixed exposing variable
This commit is contained in:
parent
be2cd32f86
commit
abf8df26f0
2 changed files with 2 additions and 1 deletions
|
@ -10,7 +10,7 @@ jobs:
|
||||||
name: Build builder image
|
name: Build builder image
|
||||||
run: |
|
run: |
|
||||||
eval $(ssh-agent -s)
|
eval $(ssh-agent -s)
|
||||||
echo "{{ secrets.STORAGE_SSH_KEY }} > ./id_rsa
|
echo ${{ secrets.STORAGE_SSH_KEY }} > ./id_rsa
|
||||||
docker build --no-cache -f Dockerfile-builder -t builder:latest .
|
docker build --no-cache -f Dockerfile-builder -t builder:latest .
|
||||||
|
|
||||||
|
|
|
@ -11,5 +11,6 @@ jobs:
|
||||||
build-sway:
|
build-sway:
|
||||||
uses: ./.forgejo/workflows/build-image-sway.yaml
|
uses: ./.forgejo/workflows/build-image-sway.yaml
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
|
needs: [prebuild]
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue