Skip to content

Commit

Permalink
Update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Travja committed Dec 13, 2024
1 parent 39696bd commit 86256c4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/devbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Dev Build
on:
push:
branches: [ dev ]
paths: [ src/** ]
paths: [ '**/src/**' ]

jobs:
deploy:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Release Build
on:
push:
branches: [ main ]
paths: [ src/** ]
paths: [ '**/src/**' ]

jobs:
deploy:
Expand Down
3 changes: 3 additions & 0 deletions codex-api/src/main/java/studio/magemonkey/codex/Codex.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
import lombok.Setter;
import org.bukkit.plugin.java.JavaPlugin;

/**
* This will slowly become the central point of reference for all things Codex instead of CodexEngine
*/
public class Codex {
@Setter
public static JavaPlugin plugin;
Expand Down

0 comments on commit 86256c4

Please sign in to comment.