Support Central Marketplace and increase verifeir version to support DCQL #263
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 | |
| jobs: | |
| generate-version: | |
| name: Generate version | |
| runs-on: ubuntu-latest | |
| outputs: | |
| version: ${{ steps.out.outputs.version }} | |
| plain-version: ${{ steps.out.outputs.plain-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 }})" | |
| echo "::set-output name=plain-version::$(echo ${VERSION})" | |
| git-release: | |
| needs: ["generate-version"] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Generate Table of contents | |
| uses: technote-space/toc-generator@v4 | |
| with: | |
| TARGET_PATHS: "./README.md,./doc/README.md" | |
| COMMIT_MESSAGE: "Update ToC" | |
| - 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 }} |