We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 070c589 commit ae69738Copy full SHA for ae69738
1 file changed
.github/workflows/build-on-ds-update.yaml
@@ -1,10 +1,27 @@
1
-name: Build on DS update
+name: Prepare next branch
2
3
on:
4
workflow_dispatch:
5
6
+permissions:
7
+ contents: write
8
+
9
jobs:
- build:
10
+ sync:
11
runs-on: ubuntu-latest
12
steps:
- - run: echo "ok"
13
+ - name: Checkout
14
+ uses: actions/checkout@v4
15
+ with:
16
+ fetch-depth: 0
17
18
+ - name: Configure git
19
+ run: |
20
+ git config user.email "github-actions[bot]@users.noreply.github.com"
21
+ git config user.name "github-actions[bot]"
22
23
+ - name: Run prepare_next.sh
24
+ run: bash bin/prepare_next.sh -v ${{ vars.NEXT_BRANCH_VERSION }} -b ${{ vars.NEXT_BRANCH_SOURCE }}
25
26
+ - name: Push to next branch
27
+ run: git push origin HEAD:${{ vars.NEXT_BRANCH_VERSION }}-next
0 commit comments