Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
inottn committed Nov 17, 2024
1 parent 3c74282 commit 3f7c3e8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/get-runner-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ on:
jobs:
main:
name: Get Runner Labels
runs-on: [self-hosted, Linux, ci]
runs-on: ubuntu-latest
outputs:
LINUX_RUNNER_LABELS: ${{ steps.run.outputs.LINUX_RUNNER_LABELS }}
MACOS_RUNNER_LABELS: ${{ steps.run.outputs.MACOS_RUNNER_LABELS }}
Expand Down
4 changes: 2 additions & 2 deletions crates/rspack_plugin_extract_css/src/plugin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ impl PluginCssExtract {
let mut source = ConcatSource::default();
let mut external_source = ConcatSource::default();

let (filename, _) = compilation.get_path_with_info(filename_template, path_data)?;
let (filename, asset_info) = compilation.get_path_with_info(filename_template, path_data)?;

for module in used_modules {
let content = Cow::Borrowed(module.content.as_str());
Expand Down Expand Up @@ -412,7 +412,7 @@ impl PluginCssExtract {
RenderManifestEntry::new(
Arc::new(external_source),
filename,
AssetInfo::default(),
asset_info,
false,
false,
),
Expand Down

0 comments on commit 3f7c3e8

Please sign in to comment.