Skip to content

Commit

Permalink
ci: Added big archives to release build
Browse files Browse the repository at this point in the history
  • Loading branch information
a-sr committed Nov 9, 2022
1 parent 0f4a8bf commit c475e8c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:

# Archive Repository
- name: Archive Semantics Repository Artifact
if: github.ref == 'refs/heads/master'
if: ${{ github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/heads/release-') }}
uses: actions/upload-artifact@v2
with:
name: Semantics Repository Artifact
Expand All @@ -56,7 +56,7 @@ jobs:

# Collect and Archive all Products
- name: Collect All Products
if: github.ref == 'refs/heads/master'
if: ${{ github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/heads/release-') }}
run: |
mkdir products
cp -r build/de.cau.cs.kieler.semantics.product.repository/target/products/sccharts_rca_* products/
Expand All @@ -66,7 +66,7 @@ jobs:
mkdir products/ls
cp -r build/de.cau.cs.kieler.language.server.cli/target/exe/* products/ls
- name: Archive All Products
if: github.ref == 'refs/heads/master'
if: ${{ github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/heads/release-') }}
uses: actions/upload-artifact@v2
with:
name: All Semantics Products
Expand Down

0 comments on commit c475e8c

Please sign in to comment.