This repository has been archived by the owner on Jan 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
89 lines (79 loc) · 2.58 KB
/
publish-to-github-packages.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
name: Publish package to GitHub Packages
on: [push]
jobs:
build-project-artifacts:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'adopt'
- name: Build
run: mvn clean install
- name: Cache maven project artifacts
uses: actions/cache/save@v3
with:
path: target/generated-sources/openapi
key: compiled-maven-project
- name: Cache npm project artifacts
uses: actions/cache/save@v3
with:
path: target/generated-sources/npm-package
key: compiled-npm-project
publish-java-project:
needs: [build-project-artifacts]
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Retrieve compiled maven project artifacts
uses: actions/cache/restore@v3
with:
path: target/generated-sources/openapi
key: compiled-maven-project
fail-on-cache-miss: true
- name: Publish package
run: |
cd target/generated-sources/openapi
mvn --batch-mode -DaltDeploymentRepository="$MAVEN_DEPLOYMENT_REPOSITORY_URL" deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DEPLOYMENT_REPOSITORY: ${{ secrets.MAVEN_DEPLOYMENT_REPOSITORY_URL}}
publish-node-package:
needs: [build-project-artifacts]
runs-on: ubuntu-latest
steps:
- name: Retrieve compiled maven project artifacts
uses: actions/cache/restore@v3
with:
path: target/generated-sources/npm-package
key: compiled-npm-project
fail-on-cache-miss: true
- uses: actions/setup-node@v3
with:
node-version: '16.x'
registry-url: 'https://npm.pkg.github.com'
scope: "@adam-shamaa"
- name: Publish NPM Package
run: |
cd target/generated-sources/npm-package
npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
publish-swagger-ui:
needs: [publish-java-project, publish-node-package]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Generate Swagger UI
uses: Legion2/swagger-ui-action@v1
with:
output: swagger-ui
spec-file: ./src/main/resources/openapi/openapi.yaml
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./swagger-ui