From 4a6c98d3e91db7cd9f132bdd796fae7916b729bf Mon Sep 17 00:00:00 2001 From: Further <55025025+ifurther@users.noreply.github.com> Date: Sun, 14 Jan 2024 02:53:28 +0800 Subject: [PATCH] fix yaml error --- .github/workflows/release.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0cc843f..0659aac 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,12 +16,13 @@ jobs: - uses: actions/checkout@v3 - name: Create Vagrant Cloud Box - run: curl \ - --request POST \ - --header "Content-Type: application/json" \ - --header "Authorization: Bearer $ATLAS_TOKEN" \ - https://app.vagrantup.com/api/v2/boxes \ - --data '{ "box": { "username": "nixbox", "name": "nixos" } }' + run: | + curl \ + --request POST \ + --header "Content-Type: application/json" \ + --header "Authorization: Bearer $ATLAS_TOKEN" \ + https://app.vagrantup.com/api/v2/boxes \ + --data '{ "box": { "username": "nixbox", "name": "nixos" } }' - name: Setup `packer` uses: hashicorp/setup-packer@main