Skip to content

Commit

Permalink
(fix): Indents
Browse files Browse the repository at this point in the history
  • Loading branch information
samyakkkk committed Mar 28, 2024
1 parent cc52b64 commit 3d61b1e
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/executables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,31 +72,31 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4

- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v4
with:
name: commanddash-linux
path: ./executable/commanddash-linux

- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v4
with:
name: commanddash-mac
path: ./executable/commanddash-mac

- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v4
with:
name: commanddash-windows.exe
path: ./executable/commanddash-windows.exe

- name: Submit Executables
run: |
chmod +x ./executable/commanddash-linux
curl -X POST "https://api.commanddash.dev/executable/add" \
-H "Content-Type: multipart/form-data" \
-F "secret=${{ secrets.SECRET_KEY }}" \
-F "version=$(./executable/commanddash-linux version)" \
-F "minimum_client_version=$(./executable/commanddash-linux min_cli_version)" \
-F "windows_binary=@executable/commanddash-windows.exe" \
-F "macos_binary=@executable/commanddash-mac" \
-F "linux_binary=@executable/commanddash-linux"
- name: Submit Executables
run: |
chmod +x ./executable/commanddash-linux
curl -X POST "https://api.commanddash.dev/executable/add" \
-H "Content-Type: multipart/form-data" \
-F "secret=${{ secrets.SECRET_KEY }}" \
-F "version=$(./executable/commanddash-linux version)" \
-F "minimum_client_version=$(./executable/commanddash-linux min_cli_version)" \
-F "windows_binary=@executable/commanddash-windows.exe" \
-F "macos_binary=@executable/commanddash-mac" \
-F "linux_binary=@executable/commanddash-linux"

0 comments on commit 3d61b1e

Please sign in to comment.