pipeline-test-versioning/.gitea/workflows/release.yml

23 lines
505 B
YAML

on:
issues:
types:
- opened
jobs:
release:
if: github.event.issue.title == 'release'
runs-on: ubuntu-latest
steps:
- name: download tea cli
shell: bash
run: |
wget https://dl.gitea.com/tea/0.9.2/tea-0.9.2-linux-386
mv tea* tea
chmod +x tea
ls -l
- name: tea help
shell: bash
run: |
echo "tea i close ${{ github.event.issue.id }}"
./tea i close ${{ github.event.issue.id }}