chore(deps): update dependency ical-generator to v10 #21054
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: CI | |
| permissions: | |
| contents: read | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - alpha | |
| - beta | |
| - main | |
| - renovate/** | |
| jobs: | |
| prepare_jobs: | |
| name: "Prepare: job optimization" | |
| runs-on: ubuntu-latest | |
| outputs: | |
| pr_found: ${{ steps.pr.outputs.pr_found }} | |
| steps: | |
| - name: Get current PR | |
| id: pr | |
| uses: 8BitJonny/[email protected] | |
| with: | |
| filterOutClosed: true | |
| filterOutDraft: true | |
| release_semantic_dry: | |
| needs: prepare_jobs | |
| name: Release (semantic, dry) | |
| uses: dargmuesli/github-actions/.github/workflows/[email protected] | |
| if: needs.prepare_jobs.outputs.pr_found == 'false' || github.event_name == 'pull_request' | |
| permissions: | |
| contents: write | |
| secrets: | |
| PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | |
| with: | |
| APT_PACKAGES: mkcert | |
| DRY_RUN: true | |
| build: | |
| name: Build | |
| uses: dargmuesli/github-actions/.github/workflows/[email protected] | |
| needs: release_semantic_dry | |
| permissions: | |
| packages: write | |
| with: | |
| BUILD_ARGUMENTS: RELEASE_NAME=${{ needs.release_semantic_dry.outputs.new_release_version }} | |
| TAG: ${{ needs.release_semantic_dry.outputs.new_release_version }} | |
| secrets: | |
| BUILD_ARGUMENTS: SENTRY_AUTH_TOKEN=${{ secrets.SENTRY_AUTH_TOKEN }} | |
| release_semantic: | |
| needs: build | |
| name: Release (semantic) | |
| uses: dargmuesli/github-actions/.github/workflows/[email protected] | |
| permissions: | |
| contents: write | |
| secrets: | |
| PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | |
| with: | |
| APT_PACKAGES: mkcert |