Compare commits
4 Commits
70d8762768
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c18dc98d8e
|
||
|
|
46b9c08221
|
||
|
|
29ace6cc3f
|
||
|
|
6bef9a2030
|
36
.gitea/workflows/release-on-develop.yml
Normal file
36
.gitea/workflows/release-on-develop.yml
Normal 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}}"
|
||||
35
.gitea/workflows/release-on-tag.yml
Normal file
35
.gitea/workflows/release-on-tag.yml
Normal 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}}"
|
||||
@@ -2,7 +2,7 @@
|
||||
"id": "on-site-vtt",
|
||||
"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.",
|
||||
"version": "0.0.1",
|
||||
"version": "{{version}}",
|
||||
"compatibility": {
|
||||
"minimum": "10",
|
||||
"verified": "11"
|
||||
@@ -26,13 +26,13 @@
|
||||
}
|
||||
],
|
||||
"url": "https://gitea.aweleczka.de/aweleczka/On-Site-VTT",
|
||||
"manifest": "https://gitea.aweleczka.de/aweleczka/On-Site-VTT/raw/branch/main/on-site-vtt/module.json",
|
||||
"download": "https://gitea.aweleczka.de/aweleczka/On-Site-VTT/packages",
|
||||
"manifest": "https://gitea.aweleczka.de/aweleczka/On-Site-VTT/raw/branch/{{branch}}/on-site-vtt/module.json",
|
||||
"download": "https://gitea.aweleczka.de/aweleczka/On-Site-VTT/releases/download/{{version}}/on-site-vtt.zip",
|
||||
"bugs": "https://gitea.aweleczka.de/aweleczka/On-Site-VTT/issues",
|
||||
"readme": "https://gitea.aweleczka.de/aweleczka/On-Site-VTT/raw/branch/main/README.md",
|
||||
"license" :"https://gitea.aweleczka.de/aweleczka/On-Site-VTT/raw/branch/main/LICENSE.txt",
|
||||
"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": {
|
||||
"allowBugReporter": true
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user