...
This commit is contained in:
parent
052b245abf
commit
974ab01a32
|
@ -15,6 +15,11 @@ jobs:
|
||||||
- uses: http://sigyl.com:3000/actions/setup-node@v3
|
- uses: http://sigyl.com:3000/actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
node-version: '20'
|
node-version: '20'
|
||||||
|
- name: get development branch name
|
||||||
|
run: |
|
||||||
|
firstString=${{ github.ref_name }}
|
||||||
|
secondString="develop-"
|
||||||
|
echo ::set-env name=DEVELOPMENT_BRANCH::${firstString/build-/"$secondString"}
|
||||||
- name: GIT push
|
- name: GIT push
|
||||||
env:
|
env:
|
||||||
CI_COMMIT_MESSAGE: converted to yml for review.
|
CI_COMMIT_MESSAGE: converted to yml for review.
|
||||||
|
@ -27,11 +32,6 @@ jobs:
|
||||||
with:
|
with:
|
||||||
action: yml
|
action: yml
|
||||||
path: '.'
|
path: '.'
|
||||||
- name: get development branch name
|
|
||||||
run: |
|
|
||||||
firstString=${{ github.ref_name }}
|
|
||||||
secondString="develop-"
|
|
||||||
echo ::set-env name=DEVELOPMENT_BRANCH::${firstString/build-/"$secondString"}
|
|
||||||
- name: GIT commit and push all changed files
|
- name: GIT commit and push all changed files
|
||||||
env:
|
env:
|
||||||
CI_COMMIT_MESSAGE: converted to yml for review.
|
CI_COMMIT_MESSAGE: converted to yml for review.
|
||||||
|
|
Loading…
Reference in New Issue