IMPLEMENTED: cb listener #663
Workflow file for this run
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: Pre-Release | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| - reopened | |
| - labeled | |
| - unlabeled | |
| env: | |
| REGISTRY: quay.io | |
| REPOSITORY: fiware | |
| concurrency: | |
| # Only cancel jobs for PR updates | |
| group: pre-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| generate-version: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| version: ${{ steps.out.outputs.version }} | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - id: bump | |
| uses: zwaldowski/match-label-action@v1 | |
| with: | |
| allowed: major,minor,patch | |
| - uses: zwaldowski/semver-release-action@v2 | |
| with: | |
| dry_run: true | |
| bump: ${{ steps.bump.outputs.match }} | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Get PR Number | |
| id: pr_number | |
| run: echo "::set-output name=nr::$(echo $GITHUB_REF | awk 'BEGIN { FS = "/" } ; { print $3 }')" | |
| - name: Set version output | |
| id: out | |
| run: echo "::set-output name=version::$(echo ${VERSION}-PRE-${{ steps.pr_number.outputs.nr }})" | |
| # image build&push | |
| tmforum-apis: | |
| needs: [ "generate-version" ] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Update Specs | |
| uses: ./.github/actions/get-spec | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| - uses: actions/setup-java@v2 | |
| with: | |
| distribution: 'zulu' | |
| java-version: '17' | |
| java-package: jdk | |
| - name: Log into quay.io | |
| run: docker login -u "${{ secrets.QUAY_USERNAME }}" -p "${{ secrets.QUAY_PASSWORD }}" ${{ env.REGISTRY }} | |
| - name: Build&Push image | |
| run: | | |
| mvn versions:set -DnewVersion=${{ needs.generate-version.outputs.version }} | |
| mvn clean install deploy -DskipITs -DskipTests -Poci -Dimage.tag=${{ needs.generate-version.outputs.version }} -Dimage.registry="${{ env.REGISTRY }}" -Dimage.repository="${{ env.REPOSITORY }}" | |
| git-release: | |
| needs: ["generate-version","tmforum-apis"] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: "marvinpinto/action-automatic-releases@latest" | |
| with: | |
| repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
| automatic_release_tag: ${{ needs.generate-version.outputs.version }} | |
| prerelease: true | |
| title: ${{ needs.generate-version.outputs.version }} | |
| files: | | |
| LICENSE |