Skip to content

Commit

Permalink
CI/CD update: (remove stand alone product step; rename artifacts)
Browse files Browse the repository at this point in the history
As result of using "maven install" resulting artifacts are renamed with additional "NIGHTLY"
  • Loading branch information
ichsteffen authored May 31, 2024
1 parent 8c73727 commit caf9f21
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/maven.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,30 +40,26 @@ jobs:
- name: Build with Maven (bundles)
run: |
cd org.eclipse.rmf.releng
mvn clean install -P platform-eclipse-2023-06
- name: Build with Maven (product)
run: |
cd org.eclipse.rmf.releng.product
mvn clean package -P platform-eclipse-2023-06
mvn clean install
- name: Archive production artifacts (Win x86_64)
uses: actions/upload-artifact@v3
with:
name: org.eclipse.rmf.reqif10.pror.product-win32.win32.x86_64
path: |
org.eclipse.rmf.releng.product/target/products/org.eclipse.rmf.reqif10.pror.product-win32.win32.x86_64.zip
org.eclipse.rmf.releng.product/target/products/org.eclipse.rmf.reqif10.pror.product*win32.win32.x86_64.zip
- name: Archive production artifacts (MacOS x86_64)
uses: actions/upload-artifact@v3
with:
name: org.eclipse.rmf.reqif10.pror.product-macosx.cocoa.x86_64
path: |
org.eclipse.rmf.releng.product/target/products/org.eclipse.rmf.reqif10.pror.product-macosx.cocoa.x86_64.tar.gz
org.eclipse.rmf.releng.product/target/products/org.eclipse.rmf.reqif10.pror.product*macosx.cocoa.x86_64.tar.gz
- name: Archive production artifacts (Linux x86_64)
uses: actions/upload-artifact@v3
with:
name: org.eclipse.rmf.reqif10.pror.product-linux.gtk.x86_64
path: |
org.eclipse.rmf.releng.product/target/products/org.eclipse.rmf.reqif10.pror.product-linux.gtk.x86_64.tar.gz
org.eclipse.rmf.releng.product/target/products/org.eclipse.rmf.reqif10.pror.product*linux.gtk.x86_64.tar.gz
# Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive
Expand Down

0 comments on commit caf9f21

Please sign in to comment.