We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46f4674 commit 6a1dddeCopy full SHA for 6a1ddde
3 files changed
.github/workflows/nexus.yml
@@ -0,0 +1,31 @@
1
+name: Nexus Deployment
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
8
+jobs:
9
+ deploy:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v3
13
+ - name: Use Node.js 18
14
+ uses: actions/setup-node@v3
15
+ with:
16
+ node-version: 18
17
+ - name: Install Dependencies
18
+ run: npm install
19
+ - name: Build and Package Release
20
+ run: npm run package
21
+ - name: Deploy to Nexus
22
+ uses: sonatype-nexus-community/nexus-repo-github-action@master
23
24
+ serverUrl: https://nexus-dev.unstable.life
25
+ username: github
26
+ password: ${{ secrets.NEXUS_PASSWORD }}
27
+ format: raw
28
+ repository: launcher
29
+ coordinates: directory=/
30
+ assets: filename=extension-analytics.zip
31
+ filename: extension.fplx
0 commit comments