Skip to content

Bump tycho-version from 4.0.6 to 4.0.7 #78

Bump tycho-version from 4.0.6 to 4.0.7

Bump tycho-version from 4.0.6 to 4.0.7 #78

Workflow file for this run

# This workflow will build a the model and publish it to GitHub Packages
name: Build model
on: push
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- name: Setup Java
uses: eclipse-set/build/.github/actions/setup-java@main
- name: Build
run: mvn -T 1.5C -B clean verify
- name: Publish
run: mvn -T 1.5C -B deploy -DaltDeploymentRepository=set-github::https://maven.pkg.github.com/${{ github.repository }}
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/release/') || startsWith(github.ref, 'refs/tags/')
env:
GITHUB_TOKEN: ${{ github.token }}
- name: Trigger Toolboxmodel
if: github.ref == 'refs/heads/main' && github.repository_owner == 'eclipse-set'
uses: peter-evans/repository-dispatch@ff45666b9427631e3450c54a1bcbee4d9ff4d7c0 # v3.0.0
with:
token: ${{ secrets.GH_BOT_TOKEN }}
repository: eclipse-set/toolboxmodel
event-type: "Rebuild with model update ${{ github.run_number }}"