Skip to content

Commit

Permalink
Updated build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
DrRetro2033 committed Dec 7, 2024
1 parent db6a017 commit 5600990
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: Adding files to Artifact
run:
"cp ${{ matrix.path-to-squirrel-library }} ./scripts/installers/${{ matrix.platform }}/lib/${{ matrix.rename-squirrel-to }} &&
cp -r --force ./scripts/installers/${{ matrix.platform }}/ build/releases/"
cp -r --force ./scripts/installers/${{ matrix.platform }}/ ./build/releases/"
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
Expand Down
5 changes: 5 additions & 0 deletions lib/scripting/addon.dart
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,11 @@ class Addon {
}
}

/// # `AddonContext`
/// ## An abstract class that represents the context of an addon.
/// Acts as the bridge between the addon and the Squirrel VM.
/// Before, Addon was abstract with subclasses acting as different feature sets.
/// However, this is not the case anymore, as the Squirrel VM is now the same for all feature sets.
abstract class AddonContext {
List<SquirrelFunction> get functions;

Expand Down

0 comments on commit 5600990

Please sign in to comment.