forked from porsche-design-system/porsche-design-system
-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (32 loc) · 1.04 KB
/
push.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
on:
push:
branches:
- main
- v*
- issue/*
- housekeeping/*
- release/*
name: 'Porsche Design System'
jobs:
build-and-test:
name: 'Build and Test'
uses: ./.github/workflows/build-and-test.yml
secrets:
github-token: ${{ secrets.GITHUB_TOKEN }}
deploy-and-release:
name: 'Deploy and Release'
uses: ./.github/workflows/deploy-and-release.yml
needs:
- build-and-test
secrets:
github-token: ${{ secrets.GITHUB_TOKEN }}
porsche-npm-registry-token: ${{ secrets.PORSCHE_NPM_REGISTRY_TOKEN }}
npmjs-registry-token: ${{ secrets.NPMJS_REGISTRY_TOKEN }}
cdn-user: ${{ secrets.CDN_USER }}
cdn-ssh-key: ${{ secrets.CDN_SSH_KEY }}
algolia-app-id: ${{ secrets.ALGOLIA_APP_ID }}
algolia-api-key: ${{ secrets.ALGOLIA_API_KEY }}
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
uxpin-token-dev: ${{ secrets.UXPIN_TOKEN_DEV }}
uxpin-token-latest: ${{ secrets.UXPIN_TOKEN_LATEST }}