Skip to content

Commit

Permalink
fix(workflow): workflow should actually build product on release
Browse files Browse the repository at this point in the history
  • Loading branch information
Entenwilli committed May 30, 2024
1 parent 9129576 commit a650dcc
Showing 1 changed file with 20 additions and 12 deletions.
32 changes: 20 additions & 12 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/build.yml@v3.4
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

0 comments on commit a650dcc

Please sign in to comment.