Compare commits

..

19 Commits

Author SHA1 Message Date
b8ac60b8a2 20250207.082811
Some checks failed
Release Creation / build (release) Failing after 22s
2025-02-07 08:28:11 -06:00
a6278772fc 20250207.082305
Some checks failed
Release Creation / build (release) Failing after 20s
2025-02-07 08:23:05 -06:00
64a96747be 20250207.081601
All checks were successful
Release Creation / build (release) Successful in 29s
2025-02-07 08:16:01 -06:00
23a208387c 20250207.080819
All checks were successful
Release Creation / build (release) Successful in 32s
2025-02-07 08:08:19 -06:00
004c5dbae7 20250207.080732
All checks were successful
Release Creation / build (release) Successful in 34s
2025-02-07 08:07:32 -06:00
4cf7b9b0ed 20250207.080423
All checks were successful
Release Creation / build (release) Successful in 27s
2025-02-07 08:04:23 -06:00
d89e549a2a 20250207.080312
Some checks failed
Release Creation / build (release) Failing after 12s
2025-02-07 08:03:12 -06:00
51acb3f348 20250207.075205
All checks were successful
Release Creation / build (release) Successful in 28s
2025-02-07 07:52:05 -06:00
328fcea7f6 20250207.075000
Some checks failed
Release Creation / build (release) Failing after 16s
2025-02-07 07:50:00 -06:00
00fd997d75 20250207.074656
All checks were successful
Release Creation / build (release) Successful in 24s
2025-02-07 07:46:56 -06:00
d68a7ca49d Fri Feb 7 07:36:41 CST 2025
All checks were successful
Release Creation / build (release) Successful in 40s
2025-02-07 07:36:41 -06:00
78e593fbca Thu Feb 6 18:59:00 CST 2025
All checks were successful
Release Creation / build (release) Successful in 27s
2025-02-06 18:59:00 -06:00
7a30f53dce Add zip creation and file listing to release workflow
- Updated main.yml workflow to include zip creation and file listing steps.
- Zip creation now includes only the module.json and src folders.
- Added a step to list the files in the zip for transparency.
2025-02-06 18:54:40 -06:00
f1a1a22939 Thu Feb 6 18:46:57 CST 2025
All checks were successful
Release Creation / build (release) Successful in 29s
2025-02-06 18:46:57 -06:00
ee9a873440 Wed Feb 5 16:02:29 CST 2025
All checks were successful
Release Creation / build (release) Successful in 34s
2025-02-05 16:02:29 -06:00
7ed54aa297 Wed Feb 5 15:59:55 CST 2025
All checks were successful
Release Creation / build (release) Successful in 27s
2025-02-05 15:59:55 -06:00
0e9d62ccd0 Wed Feb 5 15:55:06 CST 2025
All checks were successful
Release Creation / build (release) Successful in 24s
2025-02-05 15:55:06 -06:00
cc03fe3fe1 Wed Feb 5 15:49:16 CST 2025
Some checks failed
Release Creation / build (release) Has been cancelled
2025-02-05 15:49:16 -06:00
338229b79d Wed Feb 5 03:43:48 PM CST 2025
Some checks failed
Release Creation / build (release) Failing after 18s
2025-02-05 15:44:13 -06:00
8 changed files with 41 additions and 34 deletions

1
.env Normal file
View File

@@ -0,0 +1 @@
TEST=123

View File

@@ -1,19 +0,0 @@
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 }}."

View File

@@ -14,7 +14,7 @@ jobs:
- name: Extract tag version number - name: Extract tag version number
id: get_version id: get_version
uses: battila7/get-version-action@v2 uses: battila7/get-version-action@v2
- run: echo ${{ steps.get_version.outputs.version-without-v }} - run: echo ${{ steps.get_version.outputs.version-without-v }} ${{ github.repository }} ${{ github.event.release.tag_name }} ${{ secrets.GITHUB_TOKEN }} ${{ github.event.release.name }}
# Substitute the Manifest and Download URLs in the module.json # Substitute the Manifest and Download URLs in the module.json
- name: Substitute Manifest and Download Links For Versioned Ones - name: Substitute Manifest and Download Links For Versioned Ones
@@ -24,23 +24,28 @@ jobs:
files: 'module.json' files: 'module.json'
env: env:
version: ${{steps.get_version.outputs.version-without-v}} version: ${{steps.get_version.outputs.version-without-v}}
url: https://github.com/${{github.repository}} url: https://gitea.ascorrea.com/${{github.repository}}
manifest: https://github.com/${{github.repository}}/releases/latest/download/module.json manifest: https://gitea.ascorrea.com/${{github.repository}}/releases/latest/download/module.json
download: https://github.com/${{github.repository}}/releases/download/${{github.event.release.tag_name}}/module.zip download: https://gitea.ascorrea.com/${{github.repository}}/releases/download/${{github.event.release.tag_name}}/module.zip
- env:
ZIP_FILE_NAME: "module.zip"
DIST_BRANCH_NAME: "main"
run: echo zip filename "${ZIP_FILENAME}" dist_branch "${DIST_BRANCH_NAME}"
# Create a zip file with all files required by the module to add to the release # Create a zip file with all files required by the module to add to the release
- run: zip -r ./module.zip demo.md - env:
ZIP_FILE_NAME: "module.zip"
DIST_BRANCH_NAME: "main"
run: mkdir -p dist && git archive --format zip --output dist/${ZIP_FILENAME} ${DIST_BRANCH_NAME}:src && cp src/module.json dist/ && echo \"Done!\nArchived to ${ZIP_FILENAME} and copied module.js.\"
- run: echo $(ls -lah)
# Create a release for this specific version # Create a release for this specific version
- name: Update Release with Files - name: Update Release with Files
id: create_version_release id: create_version_release
uses: ncipollo/release-action@v1 uses: akkuman/gitea-release-action@v1
with: with:
allowUpdates: true # Set this to false if you want to prevent updating existing releases files: |-
name: ${{ github.event.release.name }} ./dist/module.json
draft: ${{ github.event.release.unpublished }} ./dist/module.zip
prerelease: ${{ github.event.release.prerelease }}
token: ${{ secrets.GITHUB_TOKEN }}
artifacts: './module.json, ./module.zip'
tag: ${{ github.event.release.tag_name }}
body: ${{ github.event.release.body }}

3
.gitignore vendored Normal file
View File

@@ -0,0 +1,3 @@
.env
.secrets
.github/

2
.secrets Normal file
View File

@@ -0,0 +1,2 @@
TEST=123
GITHUB_TOKEN=90b74545400305cb379a38d2c442d29d3aa911a4

13
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,13 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "new release",
"type": "shell",
"command": "TAG=$(date +\"%Y%m%d.%H%M%S\"); git add . && git commit -m \"$TAG\" && git tag \"v$TAG\" && git push origin main --tags && tea release create --title \"$TAG\" --tag=\"$TAG\"",
"problemMatcher":[]
}
]
}

View File

@@ -1,3 +1,5 @@
{ {
"name": "new-demo" "name": "gitea-actions-demo",
"download": "https://gitea.ascorrea.com/asc/gitea-actions-demo/releases/download/v0.2.1/module.zip",
"manifest": "https://gitea.ascorrea.com/asc/gitea-actions-demo/releases/download/latest/module.json",
} }

0
src/main.js Normal file
View File