Skip to content

Commit

Permalink
test and build releases for oXygen 26
Browse files Browse the repository at this point in the history
This closes #8
  • Loading branch information
lueck committed Nov 16, 2023
1 parent eed10b6 commit 600e206
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,3 +73,16 @@ jobs:
asset_path: framework/target/oxbytei-oxygen25-${{ github.ref_name }}-framework.zip
asset_name: oxbytei-oxygen25-${{ github.ref_name }}-framework.zip
asset_content_type: application/zip

- name: build for oxygen 26
run: mvn -Doxygen.version=26 --batch-mode --update-snapshots clean package

- name: upload framework package for oxygen 26 to release
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: framework/target/oxbytei-oxygen26-${{ github.ref_name }}-framework.zip
asset_name: oxbytei-oxygen26-${{ github.ref_name }}-framework.zip
asset_content_type: application/zip
3 changes: 3 additions & 0 deletions .github/workflows/test-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,6 @@ jobs:

- name: run maven with build profile for oxygen 25
run: mvn -Doxygen.version=25 --batch-mode --update-snapshots clean verify

- name: run maven with build profile for oxygen 26
run: mvn -Doxygen.version=26 --batch-mode --update-snapshots clean verify

0 comments on commit 600e206

Please sign in to comment.