Compare commits

...

22 Commits
dev ... master

Author SHA1 Message Date
bd6d471bba test
Some checks failed
Go2ticket auto deployement / Go2ticket (push) Failing after 16s
2024-06-09 21:59:22 +02:00
9451ad6322 Update CI/CD
Some checks failed
Go2ticket auto deployement / Go2ticket (push) Failing after 15s
2024-06-09 12:02:20 +02:00
fadbc5f0be Update CI/CD
All checks were successful
Go2ticket auto deployement / Go2ticket (push) Successful in 19s
2024-06-09 12:01:03 +02:00
1a986b527c Update .gitea/workflows/actions.yaml
All checks were successful
Go2ticket auto deployement / Go2ticket (push) Successful in 22s
2024-06-09 03:06:32 +02:00
c441972d0d test 2024-06-09 03:05:12 +02:00
80777e3f4d test deploy
All checks were successful
Go2ticket auto deployement / Go2ticket (push) Successful in 19s
2024-06-09 02:25:15 +02:00
e7e87289c1 test deploy
All checks were successful
Go2ticket auto deployement / Go2ticket (push) Successful in 18s
2024-06-09 02:22:03 +02:00
55c0bbf9e2 test deploy
All checks were successful
Go2ticket auto deployement / Go2ticket (push) Successful in 12s
2024-06-09 02:20:26 +02:00
4bca612fe5 test deploy
Some checks failed
Go2ticket auto deployement / Go2ticket (push) Failing after 55s
2024-06-09 02:18:14 +02:00
f6a2814a03 test deploy 2024-06-09 02:15:07 +02:00
cee5121f11 test upload
Some checks failed
Go2ticket auto deployement / Go2ticket (push) Failing after 15s
2024-06-09 02:10:24 +02:00
61c83c137e test upload
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 54s
2024-06-09 02:02:50 +02:00
42976354a2 test upload
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 23s
2024-06-09 01:58:18 +02:00
0a9ff1b94c test upload
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 20s
2024-06-09 01:56:48 +02:00
3408896ef2 test upload
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 31s
2024-06-09 01:53:41 +02:00
5f2971ba2f test upload
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 16s
2024-06-09 01:49:34 +02:00
71ad1534c5 Test upload releasegithub
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 19s
2024-06-09 01:45:45 +02:00
e8fa4b9263 test generate crx file
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 19s
2024-06-09 01:13:28 +02:00
94bd6e3af4 test build
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 30s
2024-06-08 22:15:47 +02:00
b2dfe5f275 test make
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 17s
2024-06-08 22:10:12 +02:00
3ed09935a7 Merge pull request 'dev' (#1) from dev into master
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 27s
Reviewed-on: #1
2024-06-08 21:43:17 +02:00
818c0d1b35 v1 2024-06-08 21:26:08 +02:00

View File

@ -1,9 +1,14 @@
name: Gitea Actions Demo
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
name: Go2ticket auto deployement
run-name: ${{ gitea.actor }} is testing CI/CD Actions 🚀
on:
push:
branches:
- 'master'
- 'dev'
tags:
- 'v*.*.*'
jobs:
Explore-Gitea-Actions:
Go2ticket:
runs-on: ubuntu-latest
steps:
- name: Job's informations
@ -20,15 +25,59 @@ jobs:
- name: Install dependencies
run: |
apt update
apt install tree zip -y
apt install tree zip wget jq -y
- name: List files in the repository
run: tree ${{ gitea.workspace }}
- name: Build
run : |
echo "Compilation step in progress"
- name: Deploy release
if: ${{ gitea.ref == 'refs/heads/master' }}
zip -rv go2ticket-firefox.zip src/*
cp go2ticket-firefox.zip go2ticket-firefox.xpi
wget https://github.com/mcuadros/go-crxmake/releases/download/v0.2.0/crxmake_v0.2.0_linux_amd64.tar.gz
tar -xvzf crxmake_v0.2.0_linux_amd64.tar.gz crxmake_v0.2.0_linux_amd64/crxmake
./crxmake_v0.2.0_linux_amd64/crxmake src/ go2ticket-chrome.crx
ls -l go2ticket-*
- name: Generate release notes
id: release_notes
run: |
echo "Deploy artifacts on Gitea server"
NOTES=$(git log -1 --pretty=%B)
echo "release_notes=${NOTES}" >> $GITEA_ENV
echo ${NOTES}
- name: Deploy release
if: startsWith(gitea.ref, 'refs/tags/')
run: |
echo "Deploying artifacts on Gitea server"
RESPONSE=$(curl -X POST -H "Authorization: token ${{ secrets.GIT_TOKEN }}" \
-H "Content-Type: application/json" \
-d '{
"tag_name": "${{ gitea.ref }}",
"target_commitish": "${{ gitea.sha }}",
"name": "$(git for-each-ref --format='%(contents)' refs/tags/v1.0.0 | grep .)",
"body": "Release description :\n ${{ env.release_notes }}",
"draft": true,
"prerelease": false
}' \
"${{ vars.GIT_URL }}/api/v1/repos/${{ gitea.repository }}/releases")
echo "Response de ${{ vars.GIT_URL }}/api/v1/repos/${{ gitea.repository }}/releases : $RESPONSE"
RELEASE_ID=$(echo $RESPONSE | jq -r '.id')
echo "RELEASE_ID=${RELEASE_ID}"
if [ -n "$RELEASE_ID" ]; then
curl -X POST -H "Authorization: token ${{ secrets.GIT_TOKEN }}" \
-H "Content-Type: multipart/form-data" \
-F "att achment=@go2ticket-firefox.xpi" \
"${{ vars.GIT_URL }}/api/v1/repos/${{ gitea.repository }}/releases/${RELEASE_ID}/assets"
curl -X POST -H "Authorization: token ${{ secrets.GIT_TOKEN }}" \
-H "Content-Type: multipart/form-data" \
-F "attachment=@go2ticket-chrome.crx" \
"${{ vars.GIT_URL }}/api/v1/repos/${{ gitea.repository }}/releases/${RELEASE_ID}/assets"
else
echo "Failed to create release. Aborting deployment."
exit 1
fi
- name: Job's status
run: echo "🍏 This job's status is ${{ job.status }}."