Update actions #1086
This file contains hidden or 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
| name: "Development" | |
| on: | |
| push: | |
| branches: | |
| - "development" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| env: | |
| MAVEN_CLI_OPTS: "--batch-mode --errors --fail-at-end --show-version" | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v5 | |
| with: | |
| java-version: 21 | |
| distribution: "temurin" | |
| - name: Set up Maven | |
| uses: stCarolas/setup-maven@v5 | |
| with: | |
| maven-version: 3.9.9 | |
| - name: Cache | |
| uses: actions/cache@v5 | |
| with: | |
| path: ~/.m2/repository | |
| key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
| restore-keys: ${{ runner.os }}-maven- | |
| - name: Install clamdscan | |
| run: sudo apt-get install clamdscan -y | |
| - name: Run tests & install | |
| run: mvn $MAVEN_CLI_OPTS -Dtestng.groups="travis" -Denforcer.skip=true clean org.jacoco:jacoco-maven-plugin:prepare-agent install | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Deploy to GitHub packages | |
| run: mvn $MAVEN_CLI_OPTS clean deploy -Dmaven.test.skip=true -Pcore | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Copy target to docker context | |
| run: | | |
| mkdir -p docker/target | |
| cp -r roda-ui/roda-wui/target/roda-wui-$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout).jar docker/target | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v4 | |
| - name: Login to GitHub Container Registry | |
| uses: docker/login-action@v4 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Login to DockerHub container registry | |
| uses: docker/login-action@v4 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_USERNAME }} | |
| password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
| - name: Build docker image | |
| uses: docker/build-push-action@v7 | |
| with: | |
| push: true | |
| context: docker | |
| tags: | | |
| ghcr.io/keeps/roda:development | |
| keeps/roda:development | |
| sbom: true | |
| provenance: mode=max | |
| - name: Trigger KEEPS GitLab CI/CD | |
| run: | | |
| curl -X POST \ | |
| --fail \ | |
| -F token=${{ secrets.GITLAB_RODA_DEV_TRIGGER_TOKEN }} \ | |
| -F variables[DOCKER_TAG]=development \ | |
| -F ref=development \ | |
| ${{ secrets.GITLAB_RODA_DEV_TRIGGER }} |