Skip to content

Commit

Permalink
Auto deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
guyeisenbach committed Feb 25, 2024
1 parent ff7b89a commit 100590f
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
on:
push:
# branches:
# - master
jobs:
deploy:
name: Deploy to maven
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up JDK 8
uses: actions/setup-java@v3
with:
java-version: '8'
distribution: 'adopt'

- name: Import GPG key
run: echo -n "$GPG_SIGNING_KEY" | base64 --decode | gpg --import
env:
# To generate a new GPG key run the following command in your local terminal:
# gpg --export-secret-keys -a "<key_id>" | base64
GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }}
- name: Log GPG keys
run: gpg --list-secret-keys --keyid-format LONG

# - name: Deploy a new version
# run: mvn clean deploy -P build-extras,sign --settings deploy/mvnsettings.xml
# env:
# GPG_KEY_NAME: ${{ secrets.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
- Bugfix - Sensitive headers are now case-insensitive.
- Block page HTML align with spec.
- Automatically running e2e tests on pull request.
- Automatically deploying a new release on merge to master.

## [v6.11.0](https://github.com/PerimeterX/perimeterx-java-sdk/compare/6.11.0...HEAD) (2024-02-18)
* Added base64-encoded request http method to captcha script query parameters on block pages
Expand Down

0 comments on commit 100590f

Please sign in to comment.