Skip to content

Commit

Permalink
fix yaml error
Browse files Browse the repository at this point in the history
  • Loading branch information
ifurther authored Jan 13, 2024
1 parent 9df3022 commit 4a6c98d
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 4a6c98d

Please sign in to comment.