test
This commit is contained in:
parent
80777e3f4d
commit
c441972d0d
|
@ -1,7 +1,12 @@
|
||||||
name: Go2ticket auto deployement
|
name: Go2ticket auto deployement
|
||||||
run-name: ${{ gitea.actor }} is testing CI/CD Actions 🚀
|
run-name: ${{ gitea.actor }} is testing CI/CD Actions 🚀
|
||||||
on: [push]
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- 'master'
|
||||||
|
- 'dev'
|
||||||
|
tags:
|
||||||
|
- 'v*.*.*'
|
||||||
jobs:
|
jobs:
|
||||||
Go2ticket:
|
Go2ticket:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -34,7 +39,8 @@ jobs:
|
||||||
ls -l go2ticket-*
|
ls -l go2ticket-*
|
||||||
|
|
||||||
- name: Deploy release
|
- name: Deploy release
|
||||||
if: gitea.ref == 'refs/heads/master'
|
if: if: startsWith(gitea.ref, 'refs/tags/')
|
||||||
|
|
||||||
run: |
|
run: |
|
||||||
echo "Deploying artifacts on Gitea server"
|
echo "Deploying artifacts on Gitea server"
|
||||||
RESPONSE=$(curl -X POST -H "Authorization: token ${{ secrets.GIT_TOKEN }}" \
|
RESPONSE=$(curl -X POST -H "Authorization: token ${{ secrets.GIT_TOKEN }}" \
|
||||||
|
|
Loading…
Reference in New Issue
Block a user