Compare commits
No commits in common. "f6909aad5b0b5497d1a649f64b69fa6364e49ce7" and "4b7462978d5ffbefe86b0a392ad7e9f7c257299b" have entirely different histories.
f6909aad5b
...
4b7462978d
1 changed files with 7 additions and 6 deletions
|
@ -11,13 +11,8 @@ jobs:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
||||||
|
|
||||||
- name: semantic release
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
npx semantic-release
|
|
||||||
|
|
||||||
# TODO extract dedicated action
|
# TODO extract dedicated action
|
||||||
- name: setup tea cli
|
- name: download tea cli
|
||||||
shell: bash
|
shell: bash
|
||||||
env:
|
env:
|
||||||
TEA_VERSION: 0.9.2
|
TEA_VERSION: 0.9.2
|
||||||
|
@ -25,9 +20,15 @@ jobs:
|
||||||
wget https://dl.gitea.com/tea/${TEA_VERSION}/tea-${TEA_VERSION}-linux-386
|
wget https://dl.gitea.com/tea/${TEA_VERSION}/tea-${TEA_VERSION}-linux-386
|
||||||
mv tea* tea
|
mv tea* tea
|
||||||
chmod +x tea
|
chmod +x tea
|
||||||
|
ls -l
|
||||||
|
|
||||||
|
- name: tea login
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
./tea login add --url ${{ github.server_url }} --token ${{ github.token }}
|
./tea login add --url ${{ github.server_url }} --token ${{ github.token }}
|
||||||
|
|
||||||
- name: close issue
|
- name: close issue
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
|
echo "tea i close ${{ github.event.issue.id }}"
|
||||||
./tea i close ${{ github.event.issue.number }}
|
./tea i close ${{ github.event.issue.number }}
|
||||||
|
|
Loading…
Add table
Reference in a new issue