-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(workflow): workflow should actually build product on release
- Loading branch information
1 parent
9129576
commit a650dcc
Showing
1 changed file
with
20 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,15 +8,23 @@ jobs: | |
build: | ||
runs-on: 'self-hosted' | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Deploy release in Main Repo | ||
uses: softprops/action-gh-release@v2 | ||
with: | ||
generate_release_notes: true | ||
repository: DataFlowAnalysis/product | ||
files: | | ||
products/org.dataflowanalysis.product/target/deploy/DataFlowAnalysis.linux.gtk.x86_64.zip | ||
products/org.dataflowanalysis.product/target/deploy/DataFlowAnalysis.macosx.cocoa.x86_64.zip | ||
products/org.dataflowanalysis.product/target/deploy/DataFlowAnalysis.win32.win32.x86_64.zip | ||
products/org.dataflowanalysis.product/target/deploy/DataFlowAnalysis.macosx.cocoa.aarch64.zip | ||
- name: Build product | ||
uses: PalladioSimulator/Palladio-Build-ActionsPipeline/.github/workflows/[email protected] | ||
with: | ||
use-display-output: true | ||
no-caching: true | ||
java-version: 17 | ||
runner-label: ubuntu-latest | ||
deploy-updatesite: 'products/org.dataflowanalysis.product/target/deploy' | ||
env: | ||
SKIP_DEPLOY: true | ||
- name: Deploy release in Main Repo | ||
uses: softprops/action-gh-release@v2 | ||
with: | ||
generate_release_notes: true | ||
repository: DataFlowAnalysis/product | ||
files: | | ||
products/org.dataflowanalysis.product/target/deploy/DataFlowAnalysis.linux.gtk.x86_64.zip | ||
products/org.dataflowanalysis.product/target/deploy/DataFlowAnalysis.macosx.cocoa.x86_64.zip | ||
products/org.dataflowanalysis.product/target/deploy/DataFlowAnalysis.win32.win32.x86_64.zip | ||
products/org.dataflowanalysis.product/target/deploy/DataFlowAnalysis.macosx.cocoa.aarch64.zip |