Skip to content

Commit

Permalink
Logo
Browse files Browse the repository at this point in the history
  • Loading branch information
QubitPi committed Jan 22, 2025
1 parent f1b0f39 commit d71a2f6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,13 +135,13 @@ jobs:
context: .
push: false
- name: Login to DockerHub
if: github.ref == 'refs/heads/master'
#if: github.ref == 'refs/heads/master'

Check warning on line 138 in .github/workflows/ci-cd.yml

View workflow job for this annotation

GitHub Actions / YAML Style Check

138:10 [comments] missing starting space in comment
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Push image to DockerHub
if: github.ref == 'refs/heads/master'
#if: github.ref == 'refs/heads/master'

Check warning on line 144 in .github/workflows/ci-cd.yml

View workflow job for this annotation

GitHub Actions / YAML Style Check

144:10 [comments] missing starting space in comment
uses: docker/build-push-action@v3
with:
context: .
Expand Down
1 change: 0 additions & 1 deletion .lycheeignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,3 @@ https://www.openapis.org/
https://jcp.org/*
http://localhost:8080/*
https://github.com/QubitPi/fast-ws/blob/master/FastWS-Project-intellij-code-style.xml
https://hub.docker.com/r/jack20191124/fast-ws/
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
@ApplicationPath("v1")
public class ResourceConfig extends org.glassfish.jersey.server.ResourceConfig {

private static final String ENDPOINT_PACKAGE = "com.qubitpi.ws.jersey.template.web.endpoints";
private static final String ENDPOINT_PACKAGE = "com.qubitpi.fastws.web.endpoints";

/**
* DI Constructor that allows for finer dependency injection control.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import spock.lang.Specification
class JettyServerFactorySpec extends Specification {

static final int PORT = 8080
static final String ENDPOINT_RESOURCE_PACKAGE = "com.qubitpi.ws.jersey.template.resource"
static final String ENDPOINT_RESOURCE_PACKAGE = "com.qubitpi.fastws.resource"

/**
* DI constructor.
Expand Down

0 comments on commit d71a2f6

Please sign in to comment.