Skip to content

Commit 487b531

Browse files
authored
Create publish GH Packages action (#469)
Add a new action that published to Github package registry on release
1 parent 3ce3697 commit 487b531

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Publish GH Packages
2+
3+
on: [release]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v1
11+
12+
- name: Set up JDK 11
13+
uses: actions/setup-java@v1
14+
with:
15+
java-version: 11
16+
17+
- name: Publish to GH Packages
18+
run: mvn deploy -Dregistry=https://maven.pkg.github.com/ExpediaGroup -Dtoken=${{ secrets.GH_PUBLISH_PACKAGE_TOKEN }}

0 commit comments

Comments
 (0)