From 4ec70dec2042ffefe009b4135c9636122f70a397 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20CHABANNE?= Date: Sat, 8 Jun 2024 13:04:04 +0200 Subject: [PATCH 01/10] Test Actions --- .gitea/workflows/actions.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.gitea/workflows/actions.yaml b/.gitea/workflows/actions.yaml index e69de29..c537cc6 100644 --- a/.gitea/workflows/actions.yaml +++ b/.gitea/workflows/actions.yaml @@ -0,0 +1,19 @@ +name: Gitea Actions Demo +run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀 +on: [push] + +jobs: + Explore-Gitea-Actions: + runs-on: ubuntu-latest + steps: + - run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event." + - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!" + - run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}." + - name: Check out repository code + uses: actions/checkout@v4 + - run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner." + - run: echo "🖥️ The workflow is now ready to test your code on the runner." + - name: List files in the repository + run: | + ls ${{ gitea.workspace }} + - run: echo "🍏 This job's status is ${{ job.status }}." From 93d090ce0ae68cec20e4f38168b8e2cac4a5c5fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20CHABANNE?= Date: Sat, 8 Jun 2024 13:10:18 +0200 Subject: [PATCH 02/10] Test Actions --- .gitea/workflows/actions.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/actions.yaml b/.gitea/workflows/actions.yaml index c537cc6..2d484d8 100644 --- a/.gitea/workflows/actions.yaml +++ b/.gitea/workflows/actions.yaml @@ -15,5 +15,5 @@ jobs: - run: echo "🖥️ The workflow is now ready to test your code on the runner." - name: List files in the repository run: | - ls ${{ gitea.workspace }} + tree ${{ gitea.workspace }} - run: echo "🍏 This job's status is ${{ job.status }}." From ccb19663a1185946b1381ff2fabc1ab6dbaea165 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20CHABANNE?= Date: Sat, 8 Jun 2024 13:11:35 +0200 Subject: [PATCH 03/10] Test Actions --- .gitea/workflows/actions.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/actions.yaml b/.gitea/workflows/actions.yaml index 2d484d8..0251dd2 100644 --- a/.gitea/workflows/actions.yaml +++ b/.gitea/workflows/actions.yaml @@ -15,5 +15,5 @@ jobs: - run: echo "🖥️ The workflow is now ready to test your code on the runner." - name: List files in the repository run: | - tree ${{ gitea.workspace }} + apt install tree -y && tree ${{ gitea.workspace }} - run: echo "🍏 This job's status is ${{ job.status }}." From b2cbbdcca0e9a15c777009254bd2530f6f3ff35d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20CHABANNE?= Date: Sat, 8 Jun 2024 13:19:38 +0200 Subject: [PATCH 04/10] Test Actions --- .gitea/workflows/actions.yaml | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/.gitea/workflows/actions.yaml b/.gitea/workflows/actions.yaml index 0251dd2..99346a3 100644 --- a/.gitea/workflows/actions.yaml +++ b/.gitea/workflows/actions.yaml @@ -6,14 +6,17 @@ jobs: Explore-Gitea-Actions: runs-on: ubuntu-latest steps: - - run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event." - - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!" - - run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}." + - name: Job's informations + run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event." + run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!" + run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}." - name: Check out repository code uses: actions/checkout@v4 - - run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner." - - run: echo "🖥️ The workflow is now ready to test your code on the runner." + run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner." + run: echo "🖥️ The workflow is now ready to test your code on the runner." + - name: Install dependencies + run: apt update && apt install tree -y - name: List files in the repository - run: | - apt install tree -y && tree ${{ gitea.workspace }} - - run: echo "🍏 This job's status is ${{ job.status }}." + run: tree ${{ gitea.workspace }} + - name: Job's status + run: echo "🍏 This job's status is ${{ job.status }}." From 424e0beddae79ee8167a70e1ffd0149a46281454 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20CHABANNE?= Date: Sat, 8 Jun 2024 13:28:38 +0200 Subject: [PATCH 05/10] Test Actions --- .gitea/workflows/actions.yaml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/actions.yaml b/.gitea/workflows/actions.yaml index 99346a3..2f2a563 100644 --- a/.gitea/workflows/actions.yaml +++ b/.gitea/workflows/actions.yaml @@ -7,13 +7,15 @@ jobs: runs-on: ubuntu-latest steps: - name: Job's informations - run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event." - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!" - run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}." + run: | + echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event." + echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!" + echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}." - name: Check out repository code uses: actions/checkout@v4 - run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner." - run: echo "🖥️ The workflow is now ready to test your code on the runner." + run: | + echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner." + echo "🖥️ The workflow is now ready to test your code on the runner." - name: Install dependencies run: apt update && apt install tree -y - name: List files in the repository From 8d0d26eb550eb60a9cf3732cecda1e159597061e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20CHABANNE?= Date: Sat, 8 Jun 2024 13:40:36 +0200 Subject: [PATCH 06/10] Debug Actions --- .gitea/workflows/actions.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/actions.yaml b/.gitea/workflows/actions.yaml index 2f2a563..776b6a4 100644 --- a/.gitea/workflows/actions.yaml +++ b/.gitea/workflows/actions.yaml @@ -17,7 +17,9 @@ jobs: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner." echo "🖥️ The workflow is now ready to test your code on the runner." - name: Install dependencies - run: apt update && apt install tree -y + run: | + apt update + apt install tree -y - name: List files in the repository run: tree ${{ gitea.workspace }} - name: Job's status From 5059506899f5e24ff0e5be611554cec7166d6a68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20CHABANNE?= Date: Sat, 8 Jun 2024 13:44:09 +0200 Subject: [PATCH 07/10] Debug Actions --- .gitea/workflows/actions.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitea/workflows/actions.yaml b/.gitea/workflows/actions.yaml index 776b6a4..61cd29c 100644 --- a/.gitea/workflows/actions.yaml +++ b/.gitea/workflows/actions.yaml @@ -13,6 +13,7 @@ jobs: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}." - name: Check out repository code uses: actions/checkout@v4 + - name: Repo informations run: | echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner." echo "🖥️ The workflow is now ready to test your code on the runner." From 12fe260a53f0200ee0ea8a940b287619ec477f39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20CHABANNE?= Date: Sat, 8 Jun 2024 14:15:57 +0200 Subject: [PATCH 08/10] test Actions Condition --- .gitea/workflows/actions.yaml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/actions.yaml b/.gitea/workflows/actions.yaml index 61cd29c..1efd977 100644 --- a/.gitea/workflows/actions.yaml +++ b/.gitea/workflows/actions.yaml @@ -20,8 +20,15 @@ jobs: - name: Install dependencies run: | apt update - apt install tree -y + apt install tree zip -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' }} + run: | + echo "Deploy artifacts on Gitea server" - name: Job's status run: echo "🍏 This job's status is ${{ job.status }}." From e8adf6dad1aca173b824fc3b9d2e4db288e4e5de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20CHABANNE?= Date: Sat, 8 Jun 2024 21:25:04 +0200 Subject: [PATCH 09/10] v1 --- {go2ticket-firefox => src}/background.js | 0 {go2ticket-firefox => src}/go2ticket.zip | Bin {go2ticket-firefox => src}/icons/go2ticket-48.png | Bin {go2ticket-firefox => src}/icons/go2ticket.png | Bin {go2ticket-firefox => src}/manifest.json | 0 {go2ticket-firefox => src}/options/options.html | 0 {go2ticket-firefox => src}/options/options.js | 0 {go2ticket-firefox => src}/popup/go2ticket.css | 0 {go2ticket-firefox => src}/popup/go2ticket.html | 0 {go2ticket-firefox => src}/popup/go2ticket.js | 0 10 files changed, 0 insertions(+), 0 deletions(-) rename {go2ticket-firefox => src}/background.js (100%) rename {go2ticket-firefox => src}/go2ticket.zip (100%) rename {go2ticket-firefox => src}/icons/go2ticket-48.png (100%) rename {go2ticket-firefox => src}/icons/go2ticket.png (100%) rename {go2ticket-firefox => src}/manifest.json (100%) rename {go2ticket-firefox => src}/options/options.html (100%) rename {go2ticket-firefox => src}/options/options.js (100%) rename {go2ticket-firefox => src}/popup/go2ticket.css (100%) rename {go2ticket-firefox => src}/popup/go2ticket.html (100%) rename {go2ticket-firefox => src}/popup/go2ticket.js (100%) diff --git a/go2ticket-firefox/background.js b/src/background.js similarity index 100% rename from go2ticket-firefox/background.js rename to src/background.js diff --git a/go2ticket-firefox/go2ticket.zip b/src/go2ticket.zip similarity index 100% rename from go2ticket-firefox/go2ticket.zip rename to src/go2ticket.zip diff --git a/go2ticket-firefox/icons/go2ticket-48.png b/src/icons/go2ticket-48.png similarity index 100% rename from go2ticket-firefox/icons/go2ticket-48.png rename to src/icons/go2ticket-48.png diff --git a/go2ticket-firefox/icons/go2ticket.png b/src/icons/go2ticket.png similarity index 100% rename from go2ticket-firefox/icons/go2ticket.png rename to src/icons/go2ticket.png diff --git a/go2ticket-firefox/manifest.json b/src/manifest.json similarity index 100% rename from go2ticket-firefox/manifest.json rename to src/manifest.json diff --git a/go2ticket-firefox/options/options.html b/src/options/options.html similarity index 100% rename from go2ticket-firefox/options/options.html rename to src/options/options.html diff --git a/go2ticket-firefox/options/options.js b/src/options/options.js similarity index 100% rename from go2ticket-firefox/options/options.js rename to src/options/options.js diff --git a/go2ticket-firefox/popup/go2ticket.css b/src/popup/go2ticket.css similarity index 100% rename from go2ticket-firefox/popup/go2ticket.css rename to src/popup/go2ticket.css diff --git a/go2ticket-firefox/popup/go2ticket.html b/src/popup/go2ticket.html similarity index 100% rename from go2ticket-firefox/popup/go2ticket.html rename to src/popup/go2ticket.html diff --git a/go2ticket-firefox/popup/go2ticket.js b/src/popup/go2ticket.js similarity index 100% rename from go2ticket-firefox/popup/go2ticket.js rename to src/popup/go2ticket.js