Skip to content

Commit 6a1ddde

Browse files
committed
github: Nexus workflow
1 parent 46f4674 commit 6a1ddde

3 files changed

Lines changed: 1614 additions & 3699 deletions

File tree

.github/workflows/nexus.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
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

Comments
 (0)