Skip to content

Commit

Permalink
Try YAML folded multiline syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
iBug committed Dec 26, 2023
1 parent e0e74a6 commit 95cb059
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,22 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Build the Docker image
run: |
docker build \
--build-arg APT_SOURCE=http://azure.archive.ubuntu.com \
run: >
docker build
--build-arg APT_SOURCE=http://azure.archive.ubuntu.com
-t labstrap .
- name: Get base image
run: |
wget --progress=dot:giga \
-O ~/input.tar.zst \
run: >
wget --progress=dot:giga
-O ~/input.tar.zst
http://download.proxmox.com/images/system/ubuntu-22.04-standard_22.04-1_amd64.tar.zst
- name: Build it!
run: |
docker run --rm -i --name=labstrap --privileged \
-e GITHUB_RUN_NUMBER \
-v "$PWD":/srv:ro \
-v $HOME/rootfs:/target \
-v $HOME/input.tar.zst:/input.tar.zst:ro \
run: >
docker run --rm -i --name=labstrap --privileged
-e GITHUB_RUN_NUMBER
-v "$PWD":/srv:ro
-v $HOME/rootfs:/target
-v $HOME/input.tar.zst:/input.tar.zst:ro
labstrap
- name: Pack it!
run: |
Expand Down

0 comments on commit 95cb059

Please sign in to comment.