5 Commits

Author SHA1 Message Date
Alexander
72558ca3b7 Forward from main
Some checks failed
On-Site VTT - Develop / build (push) Failing after 23s
2023-12-10 22:18:11 +01:00
Alexander
c18dc98d8e Starting pipeline
Some checks failed
On-Site VTT - Release / build (push) Failing after 2m9s
2023-12-10 22:15:11 +01:00
Alexander
46b9c08221 Starting pipeline 2023-12-10 22:08:32 +01:00
Alexander
29ace6cc3f Starting pipeline 2023-12-10 22:04:07 +01:00
Alexander
6bef9a2030 Starting pipeline 2023-12-10 22:01:34 +01:00
3 changed files with 112 additions and 41 deletions

View File

@@ -0,0 +1,36 @@
name: On-Site VTT - Develop
run-name: Run on ${{ github.ref }}
on:
push:
branches:
- develop
jobs:
build:
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Get current date
id: date
run: echo "::set-output name=date::$(date +'%Y-%m-%d')"
- name: Replace version in module.json
uses: jacobtomlinson/gha-find-replace@v3
with:
find: "{{version}}"
replace: dev-${{ steps.date.outputs.date }}-${{ github.run_number }}
include: "on-site-vtt/module.json"
- name: Replace branch in module.json
uses: jacobtomlinson/gha-find-replace@v3
with:
find: "{{branch}}"
replace: ${{ github.ref }}
include: "on-site-vtt/module.json"
- name: Pack and release
uses: https://gitea.com/actions/release-action@main
with:
files: |-
on-site-vtt/**
api_key: "${{secrets.RELEASE_TOKEN}}"

View File

@@ -0,0 +1,35 @@
name: On-Site VTT - Release
run-name: Run for tag ${{ github.ref_name }} on ${{ github.ref }}
on:
push:
branches:
- main
tags:
- "*"
jobs:
build:
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Replace version in module.json
uses: jacobtomlinson/gha-find-replace@v3
with:
find: "{{version}}"
replace: ${{ github.ref_name }}
include: "on-site-vtt/module.json"
- name: Replace branch in module.json
uses: jacobtomlinson/gha-find-replace@v3
with:
find: "{{branch}}"
replace: ${{ github.ref }}
include: "on-site-vtt/module.json"
- name: Pack and release
uses: https://gitea.com/actions/release-action@main
with:
files: |-
on-site-vtt/**
api_key: "${{secrets.RELEASE_TOKEN}}"

View File

@@ -1,43 +1,43 @@
{ {
"id": "on-site-vtt", "id": "on-site-vtt",
"title": "On-Site VTT - Virtual Tabletop, now with less virtual", "title": "On-Site VTT - Virtual Tabletop, now with less virtual",
"description": "A simple module adding functionality to improve playability for multiple players on a single screen/digital map.", "description": "A simple module adding functionality to improve playability for multiple players on a single screen/digital map.",
"version": "0.0.8", "version": "{{version}}",
"compatibility": { "compatibility": {
"minimum": "10", "minimum": "10",
"verified": "11" "verified": "11"
},
"authors": [
{
"name": "Alexander Weleczka",
"url": "https://aweleczka.de/"
}
],
"languages": [
{
"lang": "en",
"name": "English",
"path": "./lang/en.json"
}, },
"authors": [ {
{ "lang": "de",
"name": "Alexander Weleczka", "name": "Deutsch",
"url": "https://aweleczka.de/" "path": "./lang/de.json"
} }
], ],
"languages": [ "url": "https://gitea.aweleczka.de/aweleczka/On-Site-VTT",
{ "manifest": "https://gitea.aweleczka.de/aweleczka/On-Site-VTT/raw/branch/{{branch}}/on-site-vtt/module.json",
"lang": "en", "download": "https://gitea.aweleczka.de/aweleczka/On-Site-VTT/releases/download/{{version}}/on-site-vtt.zip",
"name": "English", "bugs": "https://gitea.aweleczka.de/aweleczka/On-Site-VTT/issues",
"path": "./lang/en.json" "readme": "https://gitea.aweleczka.de/aweleczka/On-Site-VTT/raw/branch/{{branch}}/README.md",
}, "license": "https://gitea.aweleczka.de/aweleczka/On-Site-VTT/raw/branch/{{branch}}/LICENSE.txt",
{ "flags": {
"lang": "de", "allowBugReporter": true
"name": "Deutsch", },
"path": "./lang/de.json" "styles": [
} "./styles/on-site-vtt.css"
], ],
"url": "https://gitea.aweleczka.de/aweleczka/On-Site-VTT", "esmodules": [
"manifest": "https://gitea.aweleczka.de/aweleczka/On-Site-VTT/raw/branch/develop/on-site-vtt/module.json", "./scripts/on-site-vtt.js"
"download": "https://gitea.aweleczka.de/aweleczka/On-Site-VTT/releases/download/0.0.8/on-site-vtt_0.0.8.zip", ]
"bugs": "https://gitea.aweleczka.de/aweleczka/On-Site-VTT/issues", }
"readme": "https://gitea.aweleczka.de/aweleczka/On-Site-VTT/raw/branch/develop/README.md",
"license" :"https://gitea.aweleczka.de/aweleczka/On-Site-VTT/raw/branch/develop/LICENSE.txt",
"flags": {
"allowBugReporter": true
},
"styles": [
"./styles/on-site-vtt.css"
],
"esmodules": [
"./scripts/on-site-vtt.js"
]
}