Update dependency androidx.customview:customview to v1.2.0 #297
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: Release ✈️ | |
| on: | |
| pull_request: | |
| types: [ closed ] | |
| branches: | |
| - main | |
| jobs: | |
| cancel-previous: | |
| name: Cancel Publishing | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Cancel Previous Build | |
| uses: styfle/cancel-workflow-action@0.12.1 | |
| with: | |
| access_token: ${{ github.token }} | |
| create-release: | |
| if: ${{ (github.event.pull_request.merged == true) && (contains(github.event.pull_request.labels.*.name, 'release :tada:')) }} | |
| name: Create Release | |
| runs-on: ubuntu-latest | |
| needs: cancel-previous | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.AUTO_RELEASE_PAT }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
| - name: Major Version Bump | |
| if: ${{ contains(github.event.*.labels.*.name, 'major :1st_place_medal:') }} | |
| run: make release BUMP=major | |
| - name: Minor Version Bump | |
| if: ${{ contains(github.event.*.labels.*.name, 'minor :2nd_place_medal:') }} | |
| run: make release BUMP=minor | |
| - name: Patch Version Bump | |
| if: ${{ contains(github.event.*.labels.*.name, 'patch :3rd_place_medal:') }} | |
| run: make release BUMP=patch |