-
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.
Merge branch 'master' of github.com:nl-utwente-groove/samples
- Loading branch information
Showing
1 changed file
with
14 additions
and
8 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,25 +8,31 @@ on: | |
|
||
jobs: | ||
build: | ||
name: Zip and deploy release | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout rule systems | ||
- name: Checkout sample rule systems | ||
uses: actions/checkout@v4 | ||
with: | ||
path: 'samples' | ||
|
||
- name: Check out GROOVE code for version number | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: 'nl-utwente-groove/code' | ||
path: 'code' | ||
|
||
- name: Create zips | ||
run: | | ||
ls | ||
cat zip-all.sh | ||
./zip-all.sh | ||
run: cd samples; ./zip-all.sh | ||
|
||
- name: Retrieve GROOVE version from file | ||
run: echo "VERSION=$(<src/main/resources/nl/utwente/groove/resource/version/GROOVE_VERSION) | tr '.' '_'" >> $GITHUB_ENV | ||
run: echo "VERSION=`cat code/src/main/resources/nl/utwente/groove/resource/version/GROOVE_VERSION | tr '.' '_'`" >> $GITHUB_ENV | ||
|
||
- name: Deploy release | ||
uses: ncipollo/[email protected] | ||
with: | ||
artifacts: "code/release/target/*.zip" | ||
artifacts: "samples/*.zip" | ||
draft: false | ||
prerelease: true | ||
prerelease: false | ||
tag: release-${{ env.VERSION }} |