Compare commits
6 Commits
master
...
develop/10
Author | SHA1 | Date |
---|---|---|
gilesb | 5b7aa5616f | |
gilesb | 516924f626 | |
gilesb | 9242dfd4aa | |
gilesb | 53da5306c7 | |
gilesb | 5f121e3267 | |
gilesb | 993afd5fe5 |
|
@ -22,7 +22,9 @@ jobs:
|
||||||
with:
|
with:
|
||||||
action: xml
|
action: xml
|
||||||
path: '.'
|
path: '.'
|
||||||
- run: git fetch
|
- run: |
|
||||||
|
git fetch
|
||||||
|
git branch -r
|
||||||
- name: config
|
- name: config
|
||||||
run: |
|
run: |
|
||||||
git config --global user.name "${{ github.actor }}"
|
git config --global user.name "${{ github.actor }}"
|
||||||
|
@ -32,6 +34,10 @@ jobs:
|
||||||
firstString=${{ github.ref_name }}
|
firstString=${{ github.ref_name }}
|
||||||
secondString="build"
|
secondString="build"
|
||||||
echo ::set-env name=BUILD_BRANCH::${firstString/develop\//"$secondString"\/}
|
echo ::set-env name=BUILD_BRANCH::${firstString/develop\//"$secondString"\/}
|
||||||
|
- name: status
|
||||||
|
run: |
|
||||||
|
git branch -r
|
||||||
|
echo $(git branch -r | grep -Fx " origin/${{ env.BUILD_BRANCH }}" | wc -c)
|
||||||
- name: push
|
- name: push
|
||||||
run: |
|
run: |
|
||||||
git add -A
|
git add -A
|
||||||
|
|
Loading…
Reference in New Issue