batch-example/.gitea/workflows/master-pushed.yml

25 lines
879 B
YAML
Raw Permalink Normal View History

2023-10-25 11:19:20 +00:00
name: master-pushed
2023-10-23 21:59:46 +00:00
run-name: ${{ github.actor }} is learning GitHub Actions
on:
push:
branches:
- 'master'
jobs:
new release:
runs-on: ubuntu-latest
steps:
- name: get tea
run: |
curl https://dl.gitea.com/tea/0.9.2/tea-0.9.2-linux-386 --output ../tea
chmod +x ../tea
../tea login add -n=this --url=${{ github.server_url}} -t=${{ secrets.BOT_TOKEN }}
- uses: http://sigyl.com:3000/actions/checkout@v3.5.4
with:
token: ${{ secrets.BOT_TOKEN }}
- name: bump release
run: |
2023-10-25 11:19:20 +00:00
export version=$(../tea r ls -o=simple | head -n 1 | tr " " "\n" | head -n 1 | awk -F. '{$NF = $NF + 1;} 1' | sed 's/ /./g')
2023-10-23 21:59:46 +00:00
../tea r c --note="this isrelease ${version}" --tag=${version} --title=${version} --target=${{ github.sha }}
2023-10-24 00:27:44 +00:00
echo ::set-env name=VERSION::$version