Compare commits

..

3 Commits

Author SHA1 Message Date
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
4 changed files with 12 additions and 24 deletions

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

@@ -15,6 +15,11 @@ jobs:
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 }}
- run: echo ${{ github.repository }}
- run: echo ${{ gitea.repository }}
- run: echo ${{ github.event.release.tag_name }}
- run: echo ${{ secrets.GITHUB_TOKEN }}
- run: echo ${{ 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,12 +29,12 @@ 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
# 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 - run: zip -r ./module.zip ./module.zip main.js module.json
# Create a release for this specific version # Create a release for this specific version
- name: Update Release with Files - name: Update Release with Files

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