Skip to content

Commit

Permalink
Merge pull request #130 from veraPDF/github_publish
Browse files Browse the repository at this point in the history
Fix action for pushing images to github
  • Loading branch information
MaximPlusov authored Oct 2, 2023
2 parents d48245a + 2d8476b commit c9068db
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/push-github.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ jobs:
context: .
push: true
file: Dockerfile
build-args: GH_CHECKOUT=integration
tags: ghcr.io/verapdf/rest:dev
labels: ${{ steps.meta.outputs.labels }}

5 changes: 3 additions & 2 deletions src/main/java/org/verapdf/rest/resources/ApiResource.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,9 @@
description = "Rest API for veraPDF",
version = "V0.2.0",
license = @License(name = "Apache 2.0", url = "https://www.apache.org/licenses/LICENSE-2.0")),
servers = {@Server(url = "https://demo.verapdf.org", description = "default"),
@Server(url = "http://localhost:8080", description = "local")}
servers = {@Server(url = "https://demo.verapdf.org", description = "default"),
@Server(url = "https://dev.verapdf-rest.duallab.com", description = "dev"),
@Server(url = "http://localhost:8080", description = "local")}
)

public final class ApiResource {
Expand Down

0 comments on commit c9068db

Please sign in to comment.