Skip to content

feat(platform): consent to optional cookies through native ios framew… #22930

feat(platform): consent to optional cookies through native ios framew…

feat(platform): consent to optional cookies through native ios framew… #22930

Workflow file for this run

name: CI
permissions: {}
on:
pull_request:
push:
branches:
- alpha
- beta
- main
- renovate/**
jobs:
ci-optimization:
name: CI optimization
uses: dargmuesli/github-actions/.github/workflows/ci-optimization.yml@d8fbc998656a0a3476bfdb091c216c3cf78cdc94 # 5.1.1
permissions:
pull-requests: read
release_semantic_dry:
needs: ci-optimization
if: needs.ci-optimization.outputs.continue == 'true'
name: Release (semantic, dry)
uses: dargmuesli/github-actions/.github/workflows/release-semantic.yml@d8fbc998656a0a3476bfdb091c216c3cf78cdc94 # 5.1.1
permissions:
contents: write
id-token: write
secrets:
PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
with:
DRY_RUN: true
build:
name: Build
uses: dargmuesli/github-actions/.github/workflows/docker.yml@d8fbc998656a0a3476bfdb091c216c3cf78cdc94 # 5.1.1
needs: release_semantic_dry
permissions:
packages: write
with:
BUILD_ADD_HOSTS: |
app.localhost=127.0.0.1
BUILD_ARGUMENTS: ${{ (needs.release_semantic_dry.outputs.new_release_version != null) && format('RELEASE_NAME={0}', needs.release_semantic_dry.outputs.new_release_version) || '' }}
TAG: ${{ (needs.release_semantic_dry.outputs.new_release_version != null) && 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/release-semantic.yml@d8fbc998656a0a3476bfdb091c216c3cf78cdc94 # 5.1.1
permissions:
contents: write
id-token: write
secrets:
PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}