Skip to content

Commit

Permalink
Create build_web.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
oblomov-dev authored Feb 22, 2024
1 parent 047c193 commit e7a7859
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/build_web.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: build_web

on:
push:
branches: [main]

permissions:
contents: read

jobs:
build_downport:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
- run: npm ci
- run: npm run downport
- run: npm run transpile
- name: send to downport repository
uses: peaceiris/actions-gh-pages@v3
with:
external_repository: abap2UI5/abap2UI5-web
user_name: 'github-actions[bot]'
user_email: 'github-actions[bot]@users.noreply.github.com'
publish_branch: main
publish_dir: ./output
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY_WEB }}
destination_dir: output

0 comments on commit e7a7859

Please sign in to comment.