Skip to content

Commit

Permalink
update composites
Browse files Browse the repository at this point in the history
  • Loading branch information
kylegalbraith committed Nov 2, 2024
1 parent b723dad commit 2fe8a5c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/actions/cli_assets/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ inputs:
default: cli

runs:
using: 'composite'
using: "composite"
steps:
- name: Build cli-app
shell: bash
working-directory: './packages/cli-app'
working-directory: "./upstream/packages/cli-app"
run: |
npx pnpm i
npx pnpm run cli-app:build
4 changes: 2 additions & 2 deletions .github/workflows/actions/init_rust_job/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ inputs:
- linux

runs:
using: 'composite'
using: "composite"
steps:
- name: Extract the Rust version to use from the `rust-toolchain.toml` file
shell: bash
run: |
rust_version=$(grep "channel" rust-toolchain.toml | cut -d "=" -f 2 | cut -d " " -f 2)
rust_version=$(grep "channel" ./upstream/rust-toolchain.toml | cut -d "=" -f 2 | cut -d " " -f 2)
echo "RUST_VERSION=$rust_version" >> $GITHUB_ENV
- name: Install Rust
Expand Down

0 comments on commit 2fe8a5c

Please sign in to comment.