mirror of
https://github.com/abap2UI5/abap2UI5.git
synced 2025-04-29 02:58:20 +08:00
29 lines
679 B
YAML
29 lines
679 B
YAML
name: create_frontend
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
create_frontend:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 10
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 20
|
|
- name: send to bsp repository
|
|
uses: peaceiris/actions-gh-pages@v3
|
|
with:
|
|
external_repository: abap2UI5/frontend
|
|
user_name: 'github-actions[bot]'
|
|
user_email: 'github-actions[bot]@users.noreply.github.com'
|
|
publish_branch: cloud
|
|
publish_dir: ./app/webapp
|
|
deploy_key: ${{ secrets.ACTION_KEY_FRONTEND }}
|
|
destination_dir: ./app/webapp
|