Compare commits
17 Commits
deployed/l
...
master
Author | SHA1 | Date |
---|---|---|
|
fe653240e4 | |
|
e9f787b82b | |
|
381b1211b6 | |
|
3f8a784ea0 | |
|
6a76cd6dc2 | |
|
bf4335c8b8 | |
|
f75a54e273 | |
|
6f92610c26 | |
|
9c8429ae68 | |
|
369b5ffd29 | |
|
e535cb3c62 | |
|
d1a1d14664 | |
|
47695a0523 | |
|
7dbab1a28f | |
|
e3199a06ec | |
|
79136f6882 | |
|
f35b8f67af |
|
@ -1,4 +1,4 @@
|
||||||
name: build-develop-branch
|
name: master-pushed
|
||||||
run-name: ${{ github.actor }} is learning GitHub Actions
|
run-name: ${{ github.actor }} is learning GitHub Actions
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
@ -19,25 +19,6 @@ jobs:
|
||||||
token: ${{ secrets.BOT_TOKEN }}
|
token: ${{ secrets.BOT_TOKEN }}
|
||||||
- name: bump release
|
- name: bump release
|
||||||
run: |
|
run: |
|
||||||
../tea r ls -o=simple
|
export version=$(../tea r ls -o=simple | head -n 1 | tr " " "\n" | head -n 1 | awk -F. '{$NF = $NF + 1;} 1' | sed 's/ /./g')
|
||||||
version="$(../tea r ls -o=simple | head -n 1 | tr " " "\n" | head -n 1 | awk -F. '{$NF = $NF + 1;} 1' | sed 's/ /./g')"
|
|
||||||
../tea r c --note="this isrelease ${version}" --tag=${version} --title=${version} --target=${{ github.sha }}
|
../tea r c --note="this isrelease ${version}" --tag=${version} --title=${version} --target=${{ github.sha }}
|
||||||
echo ::set-env name=VERSION::$version
|
echo ::set-env name=VERSION::$version
|
||||||
- name: Run latest-tag
|
|
||||||
uses: EndBug/latest-tag@latest
|
|
||||||
with:
|
|
||||||
# You can change the name of the tag or branch with this input.
|
|
||||||
# Default: 'latest'
|
|
||||||
#ref: someCustomTagName
|
|
||||||
|
|
||||||
# If a description is provided, the action will use it to create an annotated tag. If none is given, the action will create a lightweight tag.
|
|
||||||
# Default: ''
|
|
||||||
description: ${{ env.VERSION }}
|
|
||||||
|
|
||||||
# Force-update a branch instead of using a tag.
|
|
||||||
# Default: false
|
|
||||||
# force-branch: true
|
|
||||||
|
|
||||||
# Directory to use when executing git commands
|
|
||||||
# Default: '${{ github.workspace }}'
|
|
||||||
# git-directory: 'path/to/repo/dir'
|
|
||||||
|
|
Loading…
Reference in New Issue