Skip to content

Commit

Permalink
downport: run on all pushes (#118)
Browse files Browse the repository at this point in the history
Co-authored-by: oblomov <[email protected]>
  • Loading branch information
larshp and oblomov-dev authored Feb 18, 2024
1 parent 9fddef9 commit 6723f56
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build_downport.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ name: build_downport

on:
push:
branches: [main]

permissions:
contents: read
Expand All @@ -12,19 +11,20 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm ci
- run: npm run downport
- name: send to downport repository
uses: peaceiris/actions-gh-pages@v3
if: github.ref == 'refs/heads/main' && github.repository == 'abap2UI5/abap2UI5-samples'
with:
external_repository: abap2UI5/abap2UI5-samples-downport
user_name: 'github-actions[bot]'
user_email: 'github-actions[bot]@users.noreply.github.com'
publish_branch: v_740
publish_dir: ./downport
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
destination_dir: src
destination_dir: src

0 comments on commit 6723f56

Please sign in to comment.