Skip to content

feat: add XAA resource app, branding identifiers, session actor, and 3P SSO ticket config #318

feat: add XAA resource app, branding identifiers, session actor, and 3P SSO ticket config

feat: add XAA resource app, branding identifiers, session actor, and 3P SSO ticket config #318

Workflow file for this run

name: Create GitHub Release
on:
pull_request:
types:
- closed
workflow_dispatch:
permissions:
contents: write
id-token: write # For publishing to npm using --provenance
### TODO: Replace instances of './.github/workflows/' w/ `auth0/dx-sdk-actions/workflows/` and append `@latest` after the common `dx-sdk-actions` repo is made public.
### TODO: Also remove `get-prerelease`, `get-release-notes`, `get-version`, `npm-publish`, `release-create`, and `tag-exists` actions from this repo's .github/actions folder once the repo is public.
### TODO: Also remove `npm-release` workflow from this repo's .github/workflows folder once the repo is public.
jobs:
release:
uses: ./.github/workflows/npm-release.yml
with:
node-version: 22.23.1
require-build: true
secrets:
github-token: ${{ secrets.GITHUB_TOKEN }}
deploy-docs:
name: Deploy Documentation
needs: release
if: github.event_name == 'workflow_dispatch' || (github.event_name == 'pull_request' && github.event.pull_request.merged && startsWith(github.event.pull_request.head.ref, 'release/'))
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/deploy-docs
with:
node-version: 22.23.1
token: ${{ secrets.GITHUB_TOKEN }}