Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/settings.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 https://maven.apache.org/xsd/settings-1.0.0.xsd">
<profiles>
<profile>
<id>akka-github-actions</id>
<repositories>
<repository>
<id>akka-repository</id>
<name>Akka library repository</name>
<!-- This only works for Akka's internal CI/CD -->
<url>https://repo.akka.io/maven/github_actions</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>akka-repository</id>
<name>Akka library repository</name>
<!-- This only works for Akka's internal CI/CD -->
<url>https://repo.akka.io/maven/github_actions</url>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
<activeProfiles>
<activeProfile>akka-github-actions</activeProfile>
</activeProfiles>
</settings>
4 changes: 2 additions & 2 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ permissions:

jobs:
verify:
name: Verfiy
runs-on: ubuntu-22.04
name: Verify
runs-on: Akka-Default
if: github.event.repository.fork == false
steps:
- name: Checkout
Expand Down
Loading