Skip to content

Commit

Permalink
debug: attempt to fix yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
4e6 committed Feb 1, 2025
1 parent 21b8941 commit 4612037
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ide-packaging-optional.yml
Original file line number Diff line number Diff line change
Expand Up @@ -160,9 +160,9 @@ jobs:
with:
name: project-manager-macos
- run: |-
| mkdir -p dist/backend
| tar -xvf project-manager.tar -C dist/backend
| rm project-manager.tar
|- mkdir -p dist/backend
|- tar -xvf project-manager.tar -C dist/backend
|- rm project-manager.tar
- run: ls -l dist; ls -l dist/backend
- run: ./run ide build --backend-source local --gui-upload-artifact false
env:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ide-packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -279,9 +279,9 @@ jobs:
with:
name: project-manager-linux
- run: |-
| mkdir -p dist/backend
| tar -xvf project-manager.tar -C dist/backend
| rm project-manager.tar
|- mkdir -p dist/backend
|- tar -xvf project-manager.tar -C dist/backend
|- rm project-manager.tar
- run: ls -l dist; ls -l dist/backend
- run: ./run ide build --backend-source local --gui-upload-artifact false
env:
Expand Down Expand Up @@ -367,9 +367,9 @@ jobs:
with:
name: project-manager-windows
- run: |-
| mkdir -p dist/backend
| tar -xvf project-manager.tar -C dist/backend
| rm project-manager.tar
|- mkdir -p dist/backend
|- tar -xvf project-manager.tar -C dist/backend
|- rm project-manager.tar
- run: ls -l dist; ls -l dist/backend
- run: ./run ide build --backend-source local --gui-upload-artifact false
env:
Expand Down
6 changes: 3 additions & 3 deletions build_tools/build/src/ci_gen/job.rs
Original file line number Diff line number Diff line change
Expand Up @@ -684,9 +684,9 @@ impl JobArchetype for PackageIde {
steps.push(download_project_manager);

let unpack_project_manager = Step {
run: Some(r#"| mkdir -p dist/backend
| tar -xvf project-manager.tar -C dist/backend
| rm project-manager.tar"#.into()),
run: Some(r#"|- mkdir -p dist/backend
|- tar -xvf project-manager.tar -C dist/backend
|- rm project-manager.tar"#.into()),
..Default::default()
};
steps.push(unpack_project_manager);
Expand Down

0 comments on commit 4612037

Please sign in to comment.